Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Aug 18, 2018
1 parent 01b65fc commit 3a6d8af
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions persistent/_timestamp.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static char TimeStampModule_doc[] =
#define TS_MINUTES_PER_YEAR (TS_MINUTES_PER_MONTH * TS_MONTHS_PER_YEAR)

#define TS_PACK_UNSIGNED_INTO_BYTES(v, bytes) do { \
*(bytes) = v / 0x1000000; \
*(bytes) = v / 0x1000000; \
*(bytes + 1) = (v % 0x1000000) / 0x10000; \
*(bytes + 2) = (v % 0x10000) / 0x100; \
*(bytes + 3) = v % 0x100; \
Expand Down Expand Up @@ -93,8 +93,6 @@ days_in_month(int year, int month)
return month_len[leap(year)][month];
}



static double
TimeStamp_yad(int y)
{
Expand Down

0 comments on commit 3a6d8af

Please sign in to comment.