* as/link/lkar.h: sgetl and sputl are independent of endianness
[fw/sdcc] / device / lib / time.c
old mode 100755 (executable)
new mode 100644 (file)
index 1189100..8266ab9
@@ -198,7 +198,7 @@ time_t mktime(struct tm *timeptr) {
     }
 
     seconds+= (timeptr->tm_mday-1)*60*60*24L;
-    seconds+= timeptr->tm_hour*60*60;
+    seconds+= timeptr->tm_hour*60*60L;
     seconds+= timeptr->tm_min*60;
     seconds+= timeptr->tm_sec;
     return seconds;