mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-02-19 08:16:35 +00:00
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:
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user