Azure IoT common library

Dependents:   STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more

Revision:
1:9190c0f4d23a
Parent:
0:fa2de1b79154
Child:
6:c55b013dfc2a
--- a/lock_rtx_mbed.cpp	Fri Apr 08 12:01:36 2016 -0700
+++ b/lock_rtx_mbed.cpp	Sun Apr 24 16:41:14 2016 -0700
@@ -28,7 +28,7 @@
     {
         /*Tests_SRS_LOCK_99_007:[ This API on NULL handle passed returns LOCK_ERROR]*/
         result = LOCK_ERROR;
-        LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+        LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
     }
     else
     {
@@ -42,7 +42,7 @@
         {
             /*Tests_SRS_LOCK_99_006:[ This API on error should return LOCK_ERROR]*/
             result = LOCK_ERROR;
-            LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+            LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
         }
     }
     return result;
@@ -54,7 +54,7 @@
     {
         /*Tests_SRS_LOCK_99_011:[ This API on NULL handle passed returns LOCK_ERROR]*/
         result = LOCK_ERROR;
-        LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+        LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
     }
     else
     {
@@ -68,7 +68,7 @@
         {
             /*Tests_SRS_LOCK_99_010:[ This API on error should return LOCK_ERROR]*/
             result = LOCK_ERROR;
-            LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+            LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
         }
     }
     return result;
@@ -81,7 +81,7 @@
     {
         /*Tests_SRS_LOCK_99_013:[ This API on NULL handle passed returns LOCK_ERROR]*/
         result = LOCK_ERROR;
-        LogError("(result = %s)\r\n", ENUM_TO_STRING(LOCK_RESULT, result));
+        LogError("(result = %s)", ENUM_TO_STRING(LOCK_RESULT, result));
     }
     else
     {