mirror of
https://github.com/nfc-tools/mfcuk.git
synced 2026-03-10 17:43:50 +00:00
Suppress warning: function declaration isn’t a prototype, old-style function definition
This commit is contained in:
@@ -791,7 +791,7 @@ void print_usage(FILE *fp, const char * prog_name)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_identification()
|
void print_identification(void)
|
||||||
{
|
{
|
||||||
fprintf(stdout, "%s - %s\n", PACKAGE_NAME, PACKAGE_VERSION);
|
fprintf(stdout, "%s - %s\n", PACKAGE_NAME, PACKAGE_VERSION);
|
||||||
fprintf(stdout, "%s - %s\n", BUILD_NAME, BUILD_VERSION);
|
fprintf(stdout, "%s - %s\n", BUILD_NAME, BUILD_VERSION);
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ int mfcuk_finger_default_comparator(mifare_classic_tag *dump, mfcuk_finger_templ
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mfcuk_finger_load()
|
int mfcuk_finger_load(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
mifare_classic_tag mask;
|
mifare_classic_tag mask;
|
||||||
@@ -194,7 +194,7 @@ int mfcuk_finger_load()
|
|||||||
return template_loaded_count;
|
return template_loaded_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mfcuk_finger_unload()
|
int mfcuk_finger_unload(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user