Oct. 27, 2019
9:53 p.m.
Hi, Can we please change in zdump.c: if (lotm_ok & tm_ok ? (delta(&tm, &lotm) == t - lot && tm.tm_isdst == lotm.tm_isdst && strcmp(abbr(&tm), ab) == 0) : lotm_ok == tm_ok) { to: if ((lotm_ok && tm_ok) ? (delta(&tm, &lotm) == t - lot && tm.tm_isdst == lotm.tm_isdst && strcmp(abbr(&tm), ab) == 0) : lotm_ok == tm_ok) { for clarity? Both lotm_ok and tm_ok are booleans... Thanks, christos