From 39d6378010111d77a82734b8a9b45692cefa7a0b Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Fri, 21 Sep 2012 10:42:13 +0100 Subject: [PATCH] Fix type error that breaks 32bit builds. --- src/htsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htsp.c b/src/htsp.c index e380daf2..0fc0259b 100644 --- a/src/htsp.c +++ b/src/htsp.c @@ -931,7 +931,7 @@ htsp_method_addDvrEntry(htsp_connection_t *htsp, htsmsg_t *in) dvr_entry_t *de; dvr_entry_sched_state_t dvr_status; const char *dvr_config_name, *title, *desc, *creator, *lang; - time_t start, stop, start_extra, stop_extra; + int64_t start, stop, start_extra, stop_extra; uint32_t u32, priority; channel_t *ch = NULL;