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

Commit 08a140e6 authored by Benoit Goby's avatar Benoit Goby Committed by Gerrit Code Review
Browse files

Merge "toolbox: Fix date tool with /dev/alarm"

parents 6e257869 d340734c
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;
}