Fix compiler warning: no previous prototype
nfc-mfclassic.c:623:6: warning: no previous prototype for ‘is_directwrite’ [-Wmissing-prototypes] bool is_directwrite(void) ^~~~~~~~~~~~~~
This commit is contained in:
parent
91d7c5d32f
commit
c8692aa239
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ print_usage(const char *pcProgramName)
|
|||
}
|
||||
|
||||
|
||||
bool is_directwrite(void)
|
||||
static bool is_directwrite(void)
|
||||
{
|
||||
printf("Checking if Badge is DirectWrite...\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue