From fc8eb056ea8b81798467f8306629a7ea1feffe50 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 27 Oct 2015 17:15:01 +0100 Subject: i2cdetect: coding style: add a space after 'for' Signed-off-by: Bartosz Golaszewski Signed-off-by: Denys Vlasenko --- miscutils/i2c_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c index c5baaa78e..907d738fd 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; -- cgit v1.2.3