libuuid: unused parameter [-Wunused-parameter]

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2017-01-05 12:04:22 +01:00
parent 5d74cf0092
commit 59dee89d5b
1 changed files with 3 additions and 1 deletions

View File

@ -393,7 +393,9 @@ fail:
} }
#else /* !defined(HAVE_UUIDD) && defined(HAVE_SYS_UN_H) */ #else /* !defined(HAVE_UUIDD) && defined(HAVE_SYS_UN_H) */
static int get_uuid_via_daemon(int op, uuid_t out, int *num) static int get_uuid_via_daemon(int op __attribute__((__unused__)),
uuid_t out __attribute__((__unused__)),
int *num __attribute__((__unused__)))
{ {
return -1; return -1;
} }