diff options
author | Bartosz Golaszewski <bartekgola@gmail.com> | 2015-10-27 17:15:01 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-11-01 20:55:09 +0100 |
commit | fc8eb056ea8b81798467f8306629a7ea1feffe50 (patch) | |
tree | 239f9d92adaa4a1d5476d998fbd5ef2397c096f2 | |
parent | 99f025a4999ee9d44db17d8abfbde7813bf99de1 (diff) | |
download | busybox-w32-fc8eb056ea8b81798467f8306629a7ea1feffe50.tar.gz busybox-w32-fc8eb056ea8b81798467f8306629a7ea1feffe50.tar.bz2 busybox-w32-fc8eb056ea8b81798467f8306629a7ea1feffe50.zip |
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 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) | |||
1270 | puts(" 0 1 2 3 4 5 6 7 8 9 a b c d e f"); | 1270 | puts(" 0 1 2 3 4 5 6 7 8 9 a b c d e f"); |
1271 | for (i = 0; i < 128; i += 16) { | 1271 | for (i = 0; i < 128; i += 16) { |
1272 | printf("%02x: ", i); | 1272 | printf("%02x: ", i); |
1273 | for(j = 0; j < 16; j++) { | 1273 | for (j = 0; j < 16; j++) { |
1274 | fflush_all(); | 1274 | fflush_all(); |
1275 | 1275 | ||
1276 | cmd = mode; | 1276 | cmd = mode; |