nfc-mfclassic: fix warnings about prototypes. Fix Issue 76.
This commit is contained in:
parent
75cc48e460
commit
7762814eda
1 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ static bool authenticate(uint32_t uiBlock)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool read_card()
|
static bool read_card(void)
|
||||||
{
|
{
|
||||||
int32_t iBlock;
|
int32_t iBlock;
|
||||||
bool bFailure = false;
|
bool bFailure = false;
|
||||||
|
@ -222,7 +222,7 @@ bool read_card()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool write_card()
|
static bool write_card(void)
|
||||||
{
|
{
|
||||||
uint32_t uiBlock;
|
uint32_t uiBlock;
|
||||||
bool bFailure = false;
|
bool bFailure = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue