IOT-1583: Removing /W4 warning from resource/c_common.
[platform/upstream/iotivity.git] / resource / c_common / windows / src / pthread_create.c
index c6fe257..e6a808e 100644 (file)
@@ -30,6 +30,7 @@ int pthread_create(
     void *(*start_routine)(void *),
     void *arg)
 {
+    UNREFERENCED_PARAMETER(attr);
     *thread = CreateThread(NULL, 0, (PTHREAD_START_ROUTINE)start_routine, arg, 0, NULL);
     return (*thread == NULL) ? GetLastError() : 0;
 }