summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/http.c b/main/http.c
index c465d5394..40615169c 100644
--- a/main/http.c
+++ b/main/http.c
@@ -1031,7 +1031,7 @@ static int http_body_check_chunk_sync(struct ast_tcptls_session_instance *ser)
}
if (chunk_sync[0] != 0x0D || chunk_sync[1] != 0x0A) {
ast_log(LOG_WARNING, "HTTP chunk sync bytes wrong (0x%02X, 0x%02X)\n",
- chunk_sync[0], chunk_sync[1]);
+ (unsigned) chunk_sync[0], (unsigned) chunk_sync[1]);
return -1;
}