Azure IoT common library

Fork of azure_c_shared_utility by Azure IoT

Revision:
1:9190c0f4d23a
Parent:
0:fa2de1b79154
Child:
6:c55b013dfc2a
diff -r fa2de1b79154 -r 9190c0f4d23a urlencode.c
--- a/urlencode.c	Fri Apr 08 12:01:36 2016 -0700
+++ b/urlencode.c	Sun Apr 24 16:41:14 2016 -0700
@@ -311,7 +311,7 @@
     {
         /*Codes_SRS_URL_ENCODE_06_001: [If input is NULL then URL_Encode will return NULL.]*/
         result = NULL;
-        LogError("URL_Encode:: NULL input\r\n");
+        LogError("URL_Encode:: NULL input");
     }
     else
     {
@@ -330,7 +330,7 @@
         {
             /*Codes_SRS_URL_ENCODE_06_002: [If an error occurs during the encoding of input then URL_Encode will return NULL.]*/
             result = NULL;
-            LogError("URL_Encode:: MALLOC failure on encode.\r\n");
+            LogError("URL_Encode:: MALLOC failure on encode.");
         }
         else
         {