i2c.c: add newlines at the end of all error msgs
authorBrendan Le Foll <brendan.le.foll@intel.com>
Fri, 11 Jul 2014 13:47:52 +0000 (14:47 +0100)
committerBrendan Le Foll <brendan.le.foll@intel.com>
Fri, 11 Jul 2014 13:47:52 +0000 (14:47 +0100)
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
src/i2c/i2c.c

index e58eb70..4163440 100644 (file)
@@ -47,7 +47,7 @@ mraa_i2c_init(int bus)
                 fprintf(stderr, "Failed to set-up i2c multiplexer!\n");
                 return NULL;
             case -3:
-                fprintf(stderr, "Platform Not Initialised");
+                fprintf(stderr, "Platform Not Initialised\n");
                 return NULL;
             default: return NULL;
         }
@@ -65,7 +65,7 @@ mraa_i2c_init_raw(unsigned int bus)
     char filepath[32];
     snprintf(filepath, 32, "/dev/i2c-%u", bus);
     if ((dev->fh = open(filepath, O_RDWR)) < 1) {
-        fprintf(stderr, "Failed to open requested i2c port %s", filepath);
+        fprintf(stderr, "Failed to open requested i2c port %s\n", filepath);
     }
     return dev;
 }