A modelling and serializer library for Microsoft Azure IoTHub client applications

Dependents:   sht15_remote_monitoring f767zi_mqtt remote_monitoring simplesample_amqp ... more

This library implements a serializer library to be used in projects involving Microsoft Azure IoT Hub connectivity. The code is replicated from https://github.com/Azure/azure-iot-sdks

Revision:
11:b1327861f5e0
Parent:
10:c2aee3965a83
Child:
13:16e88f0cfa5f
--- a/schemalib.c	Fri Apr 08 13:25:09 2016 -0700
+++ b/schemalib.c	Sun Apr 24 16:40:59 2016 -0700
@@ -38,7 +38,7 @@
     if (g_AgentState != AGENT_NOT_INITIALIZED)
     {
         result = SERIALIZER_ALREADY_INIT;
-        LogError("(result = %s)\r\n", ENUM_TO_STRING(SERIALIZER_RESULT, result));
+        LogError("(result = %s)", ENUM_TO_STRING(SERIALIZER_RESULT, result));
     }
     else
     {
@@ -48,7 +48,7 @@
         {
             /* Codes_SRS_SCHEMALIB_99_007:[ On error SERIALIZER_CODEFIRST_INIT_FAILED shall be returned.] */
             result = SERIALIZER_CODEFIRST_INIT_FAILED;
-            LogError("(result = %s)\r\n", ENUM_TO_STRING(SERIALIZER_RESULT, result));
+            LogError("(result = %s)", ENUM_TO_STRING(SERIALIZER_RESULT, result));
         }
         else
         {