Skip to content

Commit

Permalink
Fix SCTIME formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sfd committed Nov 29, 2023
1 parent 2c6af8f commit 7bfbc78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util-time.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ typedef struct {
#define SCTIME_ADD_SECS(ts, s) \
(SCTime_t) \
{ \
.secs = (ts).secs + (s), .usecs = (ts).usecs \
.secs = (ts).secs + (s), .usecs = (ts).usecs \
}
#define SCTIME_ADD_USECS(ts, us) SCTIME_FROM_USECS((ts).usecs + (us))
#define SCTIME_FROM_SECS(s) \
Expand Down

0 comments on commit 7bfbc78

Please sign in to comment.