Azure IoT common library

Dependents:   STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more

Revision:
45:1119d0f2c4d8
Parent:
21:b92006c5b9ff
Child:
48:81866008bba4
--- a/socketio_mbed.c	Fri May 04 13:26:26 2018 -0700
+++ b/socketio_mbed.c	Mon Jun 11 15:41:10 2018 -0700
@@ -48,14 +48,16 @@
 /*this function will clone an option given by name and value*/
 static void* socketio_CloneOption(const char* name, const void* value)
 {
-    (void)(name, value);
+    (void)name;
+    (void)value;
     return NULL;
 }
 
 /*this function destroys an option previously created*/
 static void socketio_DestroyOption(const char* name, const void* value)
 {
-    (void)(name, value);
+    (void)name;
+    (void)value;
 }
 
 static OPTIONHANDLER_HANDLE socketio_retrieveoptions(CONCRETE_IO_HANDLE socket_io)
@@ -456,4 +458,3 @@
 {
     return &socket_io_interface_description;
 }
-