aboutsummaryrefslogtreecommitdiffstats
path: root/doubletotimespec.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-06-11 16:37:09 +0200
committerMattias Andrée <maandree@kth.se>2022-06-11 16:37:09 +0200
commitfcfe59c1f2219408ac2a9cd84b386816ff252221 (patch)
tree0f46c009babfba2d0200ece3ecce067c548a66b6 /doubletotimespec.c
parentRemove `static` from some `static inline` (diff)
downloadlibsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.gz
libsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.bz2
libsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.xz
Fix warnings, replace some static inline with inline + extern inline, and fix glibc support
Diffstat (limited to 'doubletotimespec.c')
-rw-r--r--doubletotimespec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/doubletotimespec.c b/doubletotimespec.c
index a104b37..02f40e9 100644
--- a/doubletotimespec.c
+++ b/doubletotimespec.c
@@ -6,7 +6,8 @@
void
libsimple_doubletotimespec(struct timespec *ts, double d)
{
- double ns = (long long int)d;
+ long long int d_integer = (long long int)d;
+ double ns = (double)d_integer;
long int nsi;
ns = d - ns;
ns *= (double)1000000000L;