From 1d15fb961497c90ac9ad21488f226eebccc7bbfb Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Fri, 24 Aug 2012 13:03:57 +0100 Subject: [PATCH] time_t should be a signed type. --- src/tvheadend.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tvheadend.h b/src/tvheadend.h index 4769f2f2..f1abf778 100644 --- a/src/tvheadend.h +++ b/src/tvheadend.h @@ -458,9 +458,9 @@ char *md5sum ( const char *str ); /* printing */ #if __SIZEOF_LONG__ == 8 - #define PRItime_t PRIu64 + #define PRItime_t PRId64 #else - #define PRItime_t "l" PRIu32 + #define PRItime_t "l" PRId32 #endif #endif /* TV_HEAD_H */