summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-08-02 03:38:31 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-08-02 03:38:31 +0200
commite63fe3b8d058bed15d65728f8e9a7e4093040028 (patch)
treecffb5ac5bef221fdf9612ed82b17dd76a4ddcd04
parent546ac7936340312cf272969ff83317ae4d50d2b4 (diff)
downloadfastd-e63fe3b8d058bed15d65728f8e9a7e4093040028.tar
fastd-e63fe3b8d058bed15d65728f8e9a7e4093040028.zip
Don't use exponential notation for integers
-rw-r--r--src/fastd.h2
-rw-r--r--src/peer.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/fastd.h b/src/fastd.h
index 5619e66..c52a690 100644
--- a/src/fastd.h
+++ b/src/fastd.h
@@ -439,7 +439,7 @@ static inline bool timespec_after(const struct timespec *tp1, const struct times
/** Returns (\a tp1 - \a tp2) in milliseconds */
static inline int timespec_diff(const struct timespec *tp1, const struct timespec *tp2) {
- return ((tp1->tv_sec - tp2->tv_sec))*1000 + (tp1->tv_nsec - tp2->tv_nsec)/1e6;
+ return ((tp1->tv_sec - tp2->tv_sec))*1000 + (tp1->tv_nsec - tp2->tv_nsec)/1000000;
}
/**
diff --git a/src/peer.c b/src/peer.c
index 8ff40dc..53b9f64 100644
--- a/src/peer.c
+++ b/src/peer.c
@@ -261,11 +261,11 @@ void fastd_peer_schedule_handshake(fastd_peer_t *peer, int delay) {
peer->next_handshake = ctx.now;
peer->next_handshake.tv_sec += delay/1000;
- peer->next_handshake.tv_nsec += (delay%1000)*1e6;
+ peer->next_handshake.tv_nsec += (delay%1000)*1000000;
- if (peer->next_handshake.tv_nsec > 1e9) {
+ if (peer->next_handshake.tv_nsec > 1000000000) {
peer->next_handshake.tv_sec++;
- peer->next_handshake.tv_nsec -= 1e9;
+ peer->next_handshake.tv_nsec -= 1000000000;
}
fastd_dlist_head_t *list;