Loading toolbox/date.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -16,7 +16,7 @@ static int settime_alarm(struct timespec *ts) { if (fd < 0) if (fd < 0) return fd; return fd; ret = ioctl(fd, ANDROID_ALARM_SET_RTC, &ts); ret = ioctl(fd, ANDROID_ALARM_SET_RTC, ts); close(fd); close(fd); return ret; return ret; } } Loading Loading
toolbox/date.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -16,7 +16,7 @@ static int settime_alarm(struct timespec *ts) { if (fd < 0) if (fd < 0) return fd; return fd; ret = ioctl(fd, ANDROID_ALARM_SET_RTC, &ts); ret = ioctl(fd, ANDROID_ALARM_SET_RTC, ts); close(fd); close(fd); return ret; return ret; } } Loading