diff options
author | Edwin Vane | 2012-07-26 14:36:21 -0500 |
---|---|---|
committer | Edwin Vane | 2012-08-13 11:42:26 -0500 |
commit | b6279689edecc898bd9622f4ac562239650815bc (patch) | |
tree | 712e67a483f44bba2c19541cca66ddae4dbd929e /libsync/sync_test.c | |
parent | 605f8706c88b2cd5d024b0a6b7253a78d968ba72 (diff) | |
download | platform-system-core-b6279689edecc898bd9622f4ac562239650815bc.tar.gz platform-system-core-b6279689edecc898bd9622f4ac562239650815bc.tar.xz platform-system-core-b6279689edecc898bd9622f4ac562239650815bc.zip |
Fixing unused param warnings in sync_test
Change-Id: Ia37a0118397ddece376bfbad7627d83263c1993f
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: Kevin P Schoedel <kevin.p.schoedel@intel.com>
Diffstat (limited to 'libsync/sync_test.c')
-rw-r--r-- | libsync/sync_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
72 | return NULL; | 72 | return NULL; |
73 | } | 73 | } |
74 | 74 | ||
75 | int main(int argc, char *argv[]) | 75 | int main(int argc __attribute__((unused)), char *argv[] __attribute__((unused))) |
76 | { | 76 | { |
77 | struct sync_thread_data sync_data[4]; | 77 | struct sync_thread_data sync_data[4]; |
78 | pthread_t threads[4]; | 78 | pthread_t threads[4]; |