Merge "Fixing unused param warnings in sync_test"

This commit is contained in:
Jean-Baptiste Queru 2012-08-21 08:08:55 -07:00 committed by android code review
commit c6620cb3a3

View file

@ -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];