From 639ea07d775056f1bcbc5a8df1a9d7a68eab4d33 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 3 Sep 2014 17:59:34 +0200 Subject: Fix clock_gettime() on MacOS X --- src/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat.h b/src/compat.h index d5d60fc..c73a340 100644 --- a/src/compat.h +++ b/src/compat.h @@ -116,7 +116,7 @@ static inline char *get_current_dir_name(void) { #define CLOCK_MONOTONIC 0 #define clockid_t int -static inline int clock_gettime(clockid_t clk_id __attribute__((unused)), fastd_timeout_t *tp) { +static inline int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *tp) { static mach_timebase_info_data_t timebase_info = {}; if (!timebase_info.denom) -- cgit v1.2.3