diff options
author | Bartosz Golaszewski | 2015-10-27 17:15:01 +0100 |
---|---|---|
committer | Denys Vlasenko | 2015-11-01 20:55:09 +0100 |
commit | fc8eb056ea8b81798467f8306629a7ea1feffe50 (patch) | |
tree | 239f9d92adaa4a1d5476d998fbd5ef2397c096f2 | |
parent | 99f025a4999ee9d44db17d8abfbde7813bf99de1 (diff) | |
download | busybox-fc8eb056ea8b81798467f8306629a7ea1feffe50.zip busybox-fc8eb056ea8b81798467f8306629a7ea1feffe50.tar.gz |
i2cdetect: coding style: add a space after 'for'
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/i2c_tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c index c5baaa7..907d738 100644 --- a/miscutils/i2c_tools.c +++ b/miscutils/i2c_tools.c @@ -1270,7 +1270,7 @@ int i2cdetect_main(int argc UNUSED_PARAM, char **argv) puts(" 0 1 2 3 4 5 6 7 8 9 a b c d e f"); for (i = 0; i < 128; i += 16) { printf("%02x: ", i); - for(j = 0; j < 16; j++) { + for (j = 0; j < 16; j++) { fflush_all(); cmd = mode; |