From: Brendan Le Foll Date: Mon, 21 Dec 2015 15:49:08 +0000 (+0000) Subject: iio.c: Fix indentation X-Git-Tag: v0.9.0^0 X-Git-Url: http://review.tizen.org/git/?p=contrib%2Fmraa.git;a=commitdiff_plain;h=ea183b37388d96d51ab8cb64712259e86a03c465 iio.c: Fix indentation Signed-off-by: Brendan Le Foll --- diff --git a/src/iio/iio.c b/src/iio/iio.c index ddc7157..7ad20a8 100644 --- a/src/iio/iio.c +++ b/src/iio/iio.c @@ -559,9 +559,9 @@ mraa_iio_create_trigger(mraa_iio_context dev, const char* trigger) if (stat(IIO_CONFIGFS_TRIGGER, &configfs_status) == 0) { memset(buf, 0, MAX_SIZE); snprintf(buf, MAX_SIZE, IIO_CONFIGFS_TRIGGER "%s", trigger); - // we actually don't care if this doesn't succeed, as it just means - // it's already been initialised - mkdir(buf, configfs_status.st_mode); + // we actually don't care if this doesn't succeed, as it just means + // it's already been initialised + mkdir(buf, configfs_status.st_mode); } return MRAA_ERROR_UNSPECIFIED;