* src/pic/gen.c (popGetExternal): augmented to also create references
[fw/sdcc] / device / lib / time.c
index f1fc5473d620ac5b2fc2d33af0dbdd70f0152b65..8266ab9e69880f58a6aa8496e296e26a2d3a6897 100755 (executable)
@@ -197,8 +197,8 @@ time_t mktime(struct tm *timeptr) {
       }
     }
 
-    seconds+= timeptr->tm_mday-1*60*60*24L;
-    seconds+= timeptr->tm_hour*60*60;
+    seconds+= (timeptr->tm_mday-1)*60*60*24L;
+    seconds+= timeptr->tm_hour*60*60L;
     seconds+= timeptr->tm_min*60;
     seconds+= timeptr->tm_sec;
     return seconds;