Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6279689 authored by Edwin Vane's avatar Edwin Vane
Browse files

Fixing unused param warnings in sync_test



Change-Id: Ia37a0118397ddece376bfbad7627d83263c1993f
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: default avatarKevin P Schoedel <kevin.p.schoedel@intel.com>
parent 605f8706
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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];