aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartekgola@gmail.com>2015-06-05 10:27:32 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2015-06-07 18:05:47 +0200
commitd90899206dd96b4c18064c18afc3b856382e64d4 (patch)
tree2b99a2ba4be472e765c091c046009192a6ab4b2d
parentaeb11a949667f82173c733e55e9f762c56a1fcba (diff)
downloadbusybox-w32-d90899206dd96b4c18064c18afc3b856382e64d4.tar.gz
busybox-w32-d90899206dd96b4c18064c18afc3b856382e64d4.tar.bz2
busybox-w32-d90899206dd96b4c18064c18afc3b856382e64d4.zip
i2cdetect: use break instead of goto in list_i2c_busses_and_exit()
Since there are now more statements in the if block after the while loop in list_i2c_busses_and_exit(), there's no need for a label. Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--miscutils/i2c_tools.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c
index 2f501cd9c..38d90ff10 100644
--- a/miscutils/i2c_tools.c
+++ b/miscutils/i2c_tools.c
@@ -1226,12 +1226,11 @@ static void NORETURN list_i2c_busses_and_exit(void)
1226 i2cdev_path, de->d_name, 1226 i2cdev_path, de->d_name,
1227 subde->d_name); 1227 subde->d_name);
1228 fp = fopen(path, "r"); 1228 fp = fopen(path, "r");
1229 goto found; 1229 break;
1230 } 1230 }
1231 } 1231 }
1232 } 1232 }
1233 1233
1234found:
1235 if (fp != NULL) { 1234 if (fp != NULL) {
1236 /* 1235 /*
1237 * Get the rest of the info and display a line 1236 * Get the rest of the info and display a line