Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 709543a9 authored by Benoit Goby's avatar Benoit Goby Committed by Android Git Automerger
Browse files

am 08a140e6: Merge "toolbox: Fix date tool with /dev/alarm"

* commit '08a140e6':
  toolbox: Fix date tool with /dev/alarm
parents c369f199 08a140e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ static int settime_alarm(struct timespec *ts) {
    if (fd < 0)
        return fd;

    ret = ioctl(fd, ANDROID_ALARM_SET_RTC, &ts);
    ret = ioctl(fd, ANDROID_ALARM_SET_RTC, ts);
    close(fd);
    return ret;
}