@@ -261,12 +261,12 @@ void timelib_dump_tzinfo(timelib_tzinfo *tz)
261
261
printf ("Geo Location: %f,%f\n" , tz -> location .latitude , tz -> location .longitude );
262
262
printf ("Comments:\n%s\n" , tz -> location .comments );
263
263
printf ("BC: %s\n" , tz -> bc ? "" : "yes" );
264
- printf ("UTC/Local count: " TIMELIB_ULONG_FMT " \n" , (timelib_ulong ) tz -> bit32 .ttisgmtcnt );
265
- printf ("Std/Wall count: " TIMELIB_ULONG_FMT " \n" , (timelib_ulong ) tz -> bit32 .ttisstdcnt );
266
- printf ("Leap.sec. count: " TIMELIB_ULONG_FMT " \n" , (timelib_ulong ) tz -> bit32 .leapcnt );
267
- printf ("Trans. count: " TIMELIB_ULONG_FMT " \n" , (timelib_ulong ) tz -> bit32 .timecnt );
268
- printf ("Local types count: " TIMELIB_ULONG_FMT " \n" , (timelib_ulong ) tz -> bit32 .typecnt );
269
- printf ("Zone Abbr. count: " TIMELIB_ULONG_FMT " \n" , (timelib_ulong ) tz -> bit32 .charcnt );
264
+ printf ("UTC/Local count: %lu \n" , (unsigned long ) tz -> bit32 .ttisgmtcnt );
265
+ printf ("Std/Wall count: %lu \n" , (unsigned long ) tz -> bit32 .ttisstdcnt );
266
+ printf ("Leap.sec. count: %lu \n" , (unsigned long ) tz -> bit32 .leapcnt );
267
+ printf ("Trans. count: %lu \n" , (unsigned long ) tz -> bit32 .timecnt );
268
+ printf ("Local types count: %lu \n" , (unsigned long ) tz -> bit32 .typecnt );
269
+ printf ("Zone Abbr. count: %lu \n" , (unsigned long ) tz -> bit32 .charcnt );
270
270
271
271
printf ("%8s (%12s) = %3d [%5ld %1d %3d '%s' (%d,%d)]\n" ,
272
272
"" , "" , 0 ,
0 commit comments