From b6279689edecc898bd9622f4ac562239650815bc Mon Sep 17 00:00:00 2001 From: Edwin Vane Date: Thu, 26 Jul 2012 15:36:21 -0400 Subject: [PATCH] Fixing unused param warnings in sync_test Change-Id: Ia37a0118397ddece376bfbad7627d83263c1993f Author: Edwin Vane Reviewed-by: Kevin P Schoedel --- libsync/sync_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsync/sync_test.c b/libsync/sync_test.c index a75f6716b..386747a62 100644 --- a/libsync/sync_test.c +++ b/libsync/sync_test.c @@ -72,7 +72,7 @@ void *sync_thread(void *data) return NULL; } -int main(int argc, char *argv[]) +int main(int argc __attribute__((unused)), char *argv[] __attribute__((unused))) { struct sync_thread_data sync_data[4]; pthread_t threads[4];