Merge "liblog: resolve build warning messages"
diff --git a/toolbox/date.c b/toolbox/date.c
index ed307c0..d6c9052 100644
--- a/toolbox/date.c
+++ b/toolbox/date.c
@@ -16,7 +16,7 @@
     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;
 }