Skip to content

Commit 84dd399

Browse files
committed
one more line (and one more trailing whitespace)
1 parent 362776b commit 84dd399

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/date.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,13 +1271,13 @@ struct tzhead {
12711271
tdelta = tdays / DAYSPERLYEAR;
12721272
if (! ((! TYPE_SIGNED(time_t) || INT_MIN <= tdelta)
12731273
&& tdelta <= INT_MAX))
1274-
return NULL; // #nocov
1274+
return NULL; // #nocov
12751275
idelta = (int)tdelta;
12761276
if (idelta == 0)
12771277
idelta = (tdays < 0) ? -1 : 1;
12781278
newy = y;
12791279
if (increment_overflow(&newy, idelta))
1280-
return NULL;
1280+
return NULL; // #nocov
12811281
leapdays = leaps_thru_end_of(newy - 1) -
12821282
leaps_thru_end_of(y - 1);
12831283
tdays -= ((time_t) newy - y) * DAYSPERNYEAR;

0 commit comments

Comments
 (0)