diff options
Diffstat (limited to 'timevaltostr.c')
-rw-r--r-- | timevaltostr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/timevaltostr.c b/timevaltostr.c index 4dd6b9c..5daace5 100644 --- a/timevaltostr.c +++ b/timevaltostr.c @@ -3,13 +3,13 @@ char * -libsimple_timevaltostr(char *restrict buf, const struct timeval *restrict tv) /* TODO test */ +libsimple_timevaltostr(char *restrict buf, const struct timeval *restrict tv) { time_t s = tv->tv_sec; long int us = tv->tv_usec; char sign[2] = "+"; - if (!s) { + if (!buf) { buf = malloc(INTSTRLEN(time_t) + sizeof("-.999999")); if (!buf) return NULL; |