summaryrefslogtreecommitdiff
path: root/sysdep
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2017-05-18 14:26:57 +0200
committerOndrej Zajicek (work) <santiago@crfreenet.org>2017-05-18 14:26:57 +0200
commit78e4dac993ad018bee98e245f6e858e18cc5db8a (patch)
tree0eeea4b869d3b669cc9e03e1e86d1a5da7bc06f0 /sysdep
parentd6e01ff90024fcee259eb145f38a0f5b000e4798 (diff)
Fix some forgotten warnings
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/unix/timer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdep/unix/timer.h b/sysdep/unix/timer.h
index ae5a27e8..aa3ed143 100644
--- a/sysdep/unix/timer.h
+++ b/sysdep/unix/timer.h
@@ -19,14 +19,14 @@ typedef struct timer {
resource r;
void (*hook)(struct timer *);
void *data;
- unsigned randomize; /* Amount of randomization */
- unsigned recurrent; /* Timer recurrence */
+ uint randomize; /* Amount of randomization */
+ uint recurrent; /* Timer recurrence */
node n; /* Internal link */
bird_clock_t expires; /* 0=inactive */
} timer;
timer *tm_new(pool *);
-void tm_start(timer *, unsigned after);
+void tm_start(timer *, uint after);
void tm_stop(timer *);
void tm_dump_all(void);
@@ -47,14 +47,14 @@ tm_remains(timer *t)
}
static inline void
-tm_start_max(timer *t, unsigned after)
+tm_start_max(timer *t, bird_clock_t after)
{
bird_clock_t rem = tm_remains(t);
tm_start(t, (rem > after) ? rem : after);
}
static inline timer *
-tm_new_set(pool *p, void (*hook)(struct timer *), void *data, unsigned rand, unsigned rec)
+tm_new_set(pool *p, void (*hook)(struct timer *), void *data, uint rand, uint rec)
{
timer *t = tm_new(p);
t->hook = hook;