@@ -1089,7 +1089,7 @@ dt2time(double jd, int *hour, int *min, int *sec, fsec_t *fsec)
10891089 */
10901090static int
10911091DecodeNumberField (int len , char * str , int fmask ,
1092- int * tmask , struct tm * tm , fsec_t * fsec , int * is2digits )
1092+ int * tmask , struct tm * tm , fsec_t * fsec , bool * is2digits )
10931093{
10941094 char * cp ;
10951095
@@ -1199,7 +1199,7 @@ DecodeNumberField(int len, char *str, int fmask,
11991199 */
12001200static int
12011201DecodeNumber (int flen , char * str , int fmask ,
1202- int * tmask , struct tm * tm , fsec_t * fsec , int * is2digits , bool EuroDates )
1202+ int * tmask , struct tm * tm , fsec_t * fsec , bool * is2digits , bool EuroDates )
12031203{
12041204 int val ;
12051205 char * cp ;
@@ -1314,8 +1314,8 @@ DecodeDate(char *str, int fmask, int *tmask, struct tm *tm, bool EuroDates)
13141314 int nf = 0 ;
13151315 int i ,
13161316 len ;
1317- int bc = FALSE;
1318- int is2digits = FALSE;
1317+ bool bc = FALSE;
1318+ bool is2digits = FALSE;
13191319 int type ,
13201320 val ,
13211321 dmask = 0 ;
@@ -1792,9 +1792,9 @@ DecodeDateTime(char **field, int *ftype, int nf,
17921792 int i ;
17931793 int val ;
17941794 int mer = HR24 ;
1795- int haveTextMonth = FALSE;
1796- int is2digits = FALSE;
1797- int bc = FALSE;
1795+ bool haveTextMonth = FALSE;
1796+ bool is2digits = FALSE;
1797+ bool bc = FALSE;
17981798 int t = 0 ;
17991799 int * tzp = & t ;
18001800
0 commit comments