From 138e73eb26f7174ec610c6e3355bced4f00474bb Mon Sep 17 00:00:00 2001 From: User Decke Date: Mon, 6 May 2013 15:57:14 +0200 Subject: [PATCH] Fix printf format modifier to build properly with CLANG. src/htsp_server.c:485:55: error: format specifies type 'short' but the argument has type 'int' [-Werror,-Wformat] p += snprintf(url+p, sizeof(url)-p, "%s%s%s:%hd%s", ~~^ %d --- src/htsp_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htsp_server.c b/src/htsp_server.c index 0261e5d4..1931fb83 100644 --- a/src/htsp_server.c +++ b/src/htsp_server.c @@ -527,7 +527,7 @@ htsp_build_channel(channel_t *ch, const char *method, htsp_connection_t *htsp) tcp_get_ip_str((struct sockaddr*)&addr, buf, 50); strcpy(url, "http://"); p = strlen(url); - p += snprintf(url+p, sizeof(url)-p, "%s%s%s:%hd%s", + p += snprintf(url+p, sizeof(url)-p, "%s%s%s:%d%s", (addr.ss_family == AF_INET6)?"[":"", buf, (addr.ss_family == AF_INET6)?"]":"",