mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-02-28 20:56:40 +00:00
Fix compiler warnings
nfc-relay.c:65: warning: no previous prototype for ‘intr_hdlr’ nfc-relay.c:73: warning: no previous prototype for ‘print_usage’
This commit is contained in:
@@ -60,7 +60,7 @@ static nfc_device *pndReader;
|
||||
static nfc_device *pndTag;
|
||||
static bool quitting = false;
|
||||
|
||||
void
|
||||
static void
|
||||
intr_hdlr (void)
|
||||
{
|
||||
printf ("\nQuitting...\n");
|
||||
@@ -68,7 +68,7 @@ intr_hdlr (void)
|
||||
return;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
print_usage (char *argv[])
|
||||
{
|
||||
printf ("Usage: %s [OPTIONS]\n", argv[0]);
|
||||
|
||||
Reference in New Issue
Block a user