Fixes: 042f62dfc ("[clang-tidy] do not use else after return") Signed-off-by: Łukasz Stelmach <l.stelmach@xxxxxxxxxxx> --- sys-utils/hwclock-rtc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys-utils/hwclock-rtc.c b/sys-utils/hwclock-rtc.c index 163f04e7a..7f1f0b663 100644 --- a/sys-utils/hwclock-rtc.c +++ b/sys-utils/hwclock-rtc.c @@ -294,12 +294,12 @@ static int synchronize_to_clock_tick_rtc(const struct hwclock_control *ctl) if (rc == -1) warn(_("ioctl() to %s to turn off update interrupts failed"), rtc_dev_name); - } else if (errno == ENOTTY || errno == EINVAL) { - /* rtc ioctl interrupts are unimplemented */ - ret = busywait_for_rtc_clock_tick(ctl, rtc_fd); - } else - warn(_("ioctl(%d, RTC_UIE_ON, 0) to %s failed"), - rtc_fd, rtc_dev_name); + } else if (errno == ENOTTY || errno == EINVAL) { + /* rtc ioctl interrupts are unimplemented */ + ret = busywait_for_rtc_clock_tick(ctl, rtc_fd); + } else + warn(_("ioctl(%d, RTC_UIE_ON, 0) to %s failed"), + rtc_fd, rtc_dev_name); return ret; } -- 2.26.2