]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix printf format modifier to build properly with CLANG.
authorUser Decke <decke@bluelife.at>
Mon, 6 May 2013 13:57:14 +0000 (15:57 +0200)
committerUser Decke <decke@bluelife.at>
Wed, 8 May 2013 13:19:45 +0000 (15:19 +0200)
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

index 3cfa6a19bae311eb219cf392b7ff58bf5128a1d2..4aef88be64a5daac89442cb2f42d49d6c38bda4b 100644 (file)
@@ -482,7 +482,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)?"]":"",