diff options
author | Mattias Andrée <maandree@kth.se> | 2018-08-26 12:49:12 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-08-26 12:49:12 +0200 |
commit | f2378869e1a3b1cb44b5c7973e0a9acfb2559d0f (patch) | |
tree | e8caadeb4359bb62c7ba0b13ce94704220dd9ac7 /timespectostr.c | |
parent | Tests and minor improvements (diff) | |
download | libsimple-f2378869e1a3b1cb44b5c7973e0a9acfb2559d0f.tar.gz libsimple-f2378869e1a3b1cb44b5c7973e0a9acfb2559d0f.tar.bz2 libsimple-f2378869e1a3b1cb44b5c7973e0a9acfb2559d0f.tar.xz |
Fixes, more test, and add minimise_number_string
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'timespectostr.c')
-rw-r--r-- | timespectostr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/timespectostr.c b/timespectostr.c index 3eca1f6..05bcaac 100644 --- a/timespectostr.c +++ b/timespectostr.c @@ -3,13 +3,13 @@ char * -libsimple_timespectostr(char *restrict buf, const struct timespec *restrict ts) /* TODO test */ +libsimple_timespectostr(char *restrict buf, const struct timespec *restrict ts) { time_t s = ts->tv_sec; long int ns = ts->tv_nsec; char sign[2] = "+"; - if (!s) { + if (!buf) { buf = malloc(INTSTRLEN(time_t) + sizeof("-.999999999")); if (!buf) return NULL; |