Skip to content

Commit

Permalink
Merge pull request #10899 from FRRouting/mergify/bp/stable/8.1/pr-10892
Browse files Browse the repository at this point in the history
  • Loading branch information
eqvinox committed Mar 28, 2022
2 parents 7e0386a + 5363edd commit 6b2f974
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/monotime.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ static inline time_t monotime(struct timeval *tvo)
return ts.tv_sec;
}

#define ONE_DAY_SECOND 60*60*24
#define ONE_WEEK_SECOND ONE_DAY_SECOND*7
#define ONE_YEAR_SECOND ONE_DAY_SECOND*365
#define ONE_DAY_SECOND (60 * 60 * 24)
#define ONE_WEEK_SECOND (ONE_DAY_SECOND * 7)
#define ONE_YEAR_SECOND (ONE_DAY_SECOND * 365)

/* the following two return microseconds, not time_t!
*
Expand Down

0 comments on commit 6b2f974

Please sign in to comment.