From df19d51bc633e80ca714ce4c52438c3631024f7e Mon Sep 17 00:00:00 2001 From: hhm Date: Wed, 17 Sep 2014 06:58:53 -0400 Subject: [PATCH] B"H net_io.c: use %d like local code --- net_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net_io.c b/net_io.c index 91cf47d..10e09d0 100644 --- a/net_io.c +++ b/net_io.c @@ -792,7 +792,7 @@ int handleHTTPRequest(struct client *c, char *p) { // Create the header and send the reply hdrlen = snprintf(hdr, sizeof(hdr), - "HTTP/1.1 %i \r\n" + "HTTP/1.1 %d \r\n" "Server: Dump1090\r\n" "Content-Type: %s\r\n" "Connection: %s\r\n"