diff options
author | Mattias Andrée <maandree@kth.se> | 2018-08-26 14:31:09 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-08-26 14:31:09 +0200 |
commit | e59072005414970eda98dee2acf22487805e091c (patch) | |
tree | 6085a34dd8498063d4aa704b45fe8851ffe224b5 /libsimple.h | |
parent | Fix aliases (diff) | |
download | libsimple-e59072005414970eda98dee2acf22487805e091c.tar.gz libsimple-e59072005414970eda98dee2acf22487805e091c.tar.bz2 libsimple-e59072005414970eda98dee2acf22487805e091c.tar.xz |
Tests and fixes
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libsimple.h')
-rw-r--r-- | libsimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsimple.h b/libsimple.h index 298c1d9..e3064e3 100644 --- a/libsimple.h +++ b/libsimple.h @@ -1454,7 +1454,7 @@ libsimple_cmptimeval(const struct timeval *__a, const struct timeval *__b) /* TO _LIBSIMPLE_GCC_ONLY(__attribute__((__nonnull__))) static inline void -libsimple_timeval2timespec(struct timespec *restrict __ts, const struct timeval *restrict __tv) /* TODO test */ +libsimple_timeval2timespec(struct timespec *restrict __ts, const struct timeval *restrict __tv) { __ts->tv_sec = __tv->tv_sec; __ts->tv_nsec = __tv->tv_usec; |