From c8ecb463f91f69d4668f0c336b2d01605bf9e64d Mon Sep 17 00:00:00 2001 From: Karl Heyes Date: Sun, 29 Feb 2004 14:55:04 +0000 Subject: [PATCH] remove warning wrt time_t svn path=/trunk/icecast/; revision=5874 --- src/admin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/admin.c b/src/admin.c index b13ced62..049a3661 100644 --- a/src/admin.c +++ b/src/admin.c @@ -190,7 +190,8 @@ xmlDocPtr admin_build_sourcelist(char *current_source) source->fallback_mount:""); snprintf(buf, sizeof(buf), "%ld", source->listeners); xmlNewChild(srcnode, NULL, "listeners", buf); - snprintf(buf, sizeof(buf), "%ld", now - source->con->con_time); + snprintf(buf, sizeof(buf), "%lu", + (unsigned long)(now - source->con->con_time)); xmlNewChild(srcnode, NULL, "Connected", buf); xmlNewChild(srcnode, NULL, "Format", source->format->format_description);