Skip to content

Commit

Permalink
python#28067: Fixed a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
abalkin committed Sep 10, 2016
1 parent 6d88fa5 commit abd143b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_datetimemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static struct tm *localtime_r(const time_t *timep, struct tm *result)
}
static struct tm *gmtime_r(const time_t *timep, struct tm *result)
{
if (gmime_s(result, timep) == 0)
if (gmtime_s(result, timep) == 0)
return result;
return NULL;
}
Expand Down

0 comments on commit abd143b

Please sign in to comment.