better format string

This commit is contained in:
Joris Vink 2018-11-29 21:24:08 +01:00
parent e97396366c
commit 400521073c
1 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@
#include <sys/queue.h>
#include <fcntl.h>
#include <stdint.h>
#include <kore/kore.h>
#include <kore/http.h>
@ -83,8 +84,8 @@ video_stream(struct http_request *req)
return (KORE_RESULT_OK);
}
kore_log(LOG_NOTICE, "%p: opened %s (%s) for streaming (%lld ref:%d)",
(void *)req->owner, v->path, ctype, v->size, v->ref);
kore_log(LOG_NOTICE, "%p: opened %s (%s) for streaming (%jd ref:%d)",
(void *)req->owner, v->path, ctype, (intmax_t)v->size, v->ref);
if (http_request_header(req, "range", &header)) {
if ((bytes = strchr(header, '=')) == NULL) {