aboutsummaryrefslogtreecommitdiffstats
path: root/doubletotimeval.c
diff options
context:
space:
mode:
Diffstat (limited to 'doubletotimeval.c')
-rw-r--r--doubletotimeval.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/doubletotimeval.c b/doubletotimeval.c
index 03bacec..c603703 100644
--- a/doubletotimeval.c
+++ b/doubletotimeval.c
@@ -6,7 +6,8 @@
void
libsimple_doubletotimeval(struct timeval *tv, 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)1000000L;