Skip to content
Snippets Groups Projects
Commit 8e5c13c1 authored by rswindell's avatar rswindell
Browse files

isoTime_t must be > 16-bit to store 235959.

parent 4d0754b3
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ xpTimeZone_t xpTimeZone_local(void);
/**********************************************/
typedef ulong isoDate_t; /* CCYYMMDD (decimal) */
typedef uint isoTime_t; /* HHMMSS (decimal) */
typedef ulong isoTime_t; /* HHMMSS (decimal) */
#define isoDate_create(year,mon,day) (((year)*10000)+((mon)*100)+(day))
#define isoTime_create(hour,min,sec) (((hour)*10000)+((min)*100)+((unsigned)sec))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment