Private
Public Access
2
0

i2c.c: add newlines at the end of all error msgs

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-07-11 14:47:52 +01:00
parent 4d6a3be3db
commit c0b8360698

View 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;
}