summaryrefslogtreecommitdiffstats
path: root/hwclock/rtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'hwclock/rtc.c')
-rw-r--r--hwclock/rtc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hwclock/rtc.c b/hwclock/rtc.c
index e59414fde..7ec5362e8 100644
--- a/hwclock/rtc.c
+++ b/hwclock/rtc.c
@@ -295,15 +295,15 @@ int ret;
static int
read_hardware_clock_rtc(struct tm *tm) {
- int rtc_fd;
+ int rtc_fd, rc;
rtc_fd = open_rtc_or_exit();
/* Read the RTC time/date, return answer via tm */
- do_rtc_read_ioctl(rtc_fd, tm);
+ rc = do_rtc_read_ioctl(rtc_fd, tm);
close(rtc_fd);
- return 0;
+ return rc;
}