From: Bartosz Golaszewski Date: Fri, 5 Jun 2015 08:27:32 +0000 (+0200) Subject: i2cdetect: use break instead of goto in list_i2c_busses_and_exit() X-Git-Tag: 1_24_0~106 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d90899206dd96b4c18064c18afc3b856382e64d4;p=oweals%2Fbusybox.git 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 Signed-off-by: Denys Vlasenko --- 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) i2cdev_path, de->d_name, subde->d_name); fp = fopen(path, "r"); - goto found; + break; } } } -found: if (fp != NULL) { /* * Get the rest of the info and display a line