@@ -1089,7 +1089,7 @@ dt2time(double jd, int *hour, int *min, int *sec, fsec_t *fsec)
1089
1089
*/
1090
1090
static int
1091
1091
DecodeNumberField (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 )
1093
1093
{
1094
1094
char * cp ;
1095
1095
@@ -1199,7 +1199,7 @@ DecodeNumberField(int len, char *str, int fmask,
1199
1199
*/
1200
1200
static int
1201
1201
DecodeNumber (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 )
1203
1203
{
1204
1204
int val ;
1205
1205
char * cp ;
@@ -1314,8 +1314,8 @@ DecodeDate(char *str, int fmask, int *tmask, struct tm *tm, bool EuroDates)
1314
1314
int nf = 0 ;
1315
1315
int i ,
1316
1316
len ;
1317
- int bc = FALSE;
1318
- int is2digits = FALSE;
1317
+ bool bc = FALSE;
1318
+ bool is2digits = FALSE;
1319
1319
int type ,
1320
1320
val ,
1321
1321
dmask = 0 ;
@@ -1792,9 +1792,9 @@ DecodeDateTime(char **field, int *ftype, int nf,
1792
1792
int i ;
1793
1793
int val ;
1794
1794
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;
1798
1798
int t = 0 ;
1799
1799
int * tzp = & t ;
1800
1800
0 commit comments