mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-02-25 19:26:35 +00:00
Fix compiler warning: old-style function definition
nfc-mfclassic.c:623:6: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
bool is_directwrite()
^~~~~~~~~~~~~~
nfc-mfclassic.c: In function ‘is_directwrite’:
nfc-mfclassic.c:623:6: warning: old-style function definition [-Wold-style-definition]
This commit is contained in:
@@ -620,7 +620,7 @@ print_usage(const char *pcProgramName)
|
||||
}
|
||||
|
||||
|
||||
bool is_directwrite()
|
||||
bool is_directwrite(void)
|
||||
{
|
||||
printf("Checking if Badge is DirectWrite...\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user