am 00f06911: am c6620cb3: Merge "Fixing unused param warnings in sync_test"

* commit '00f0691107dfde589bd23a7d079b4e05998833b0':
  Fixing unused param warnings in sync_test
This commit is contained in:
Jean-Baptiste Queru 2012-08-21 09:12:12 -07:00 committed by Android Git Automerger
commit a4ad734808
1 changed files with 1 additions and 1 deletions

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