Skip to content

Commit

Permalink
fix: missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
bovine committed Jan 10, 2025
1 parent 1741fdc commit 7a023f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/tclClock.c
Original file line number Diff line number Diff line change
Expand Up @@ -3500,7 +3500,7 @@ ClockParseFmtScnArgs(
if ( dataPtr->lastBase.timezoneObj == opts->timezoneObj
&& dataPtr->lastBase.date.seconds == baseVal
&& (!(dataPtr->lastBase.date.flags & CLF_CTZ)
|| dataPtr->lastTZEpoch == TzsetIfNecessary()) {
|| dataPtr->lastTZEpoch == TzsetIfNecessary())) {
canUseLastBase = 1;
/*
* There's one exception: If TZ changed, and if timezone is just the
Expand Down

0 comments on commit 7a023f9

Please sign in to comment.