diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-02-02 14:36:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-02 14:36:42 -0500 |
| commit | 321305829cd0d2a124cc9fd84c1f032b1f034968 (patch) | |
| tree | c71b522a2f4d08b3af69fd793471c74990942064 /lib/spf_backoff.c | |
| parent | 8c7ad688cc26a829bb14e1c523650d05ff9bb19b (diff) | |
| parent | a37bd5e070a0a11d03522a12b5d2b9a2647f7bbb (diff) | |
Merge pull request #1703 from opensourcerouting/bsd-warnings
BSD warnings
Diffstat (limited to 'lib/spf_backoff.c')
| -rw-r--r-- | lib/spf_backoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spf_backoff.c b/lib/spf_backoff.c index 92b7620eda..d7907fafdf 100644 --- a/lib/spf_backoff.c +++ b/lib/spf_backoff.c @@ -205,7 +205,7 @@ static const char *timeval_format(struct timeval *tv) size_t offset = strlen(timebuf); snprintf(timebuf + offset, sizeof(timebuf) - offset, ".%ld", - tv->tv_usec); + (long int)tv->tv_usec); return timebuf; } |
