fast: Use correct printf specifier to print content length

This commit is contained in:
Tobias Brunner 2019-05-07 14:48:19 +02:00
parent 12e64e5cf4
commit e6e4113e9f
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <inttypes.h>
#include <ClearSilver/ClearSilver.h>
@ -303,7 +304,7 @@ METHOD(fast_request_t, sendfile, bool,
return FALSE;
}
/* FCGX does not like large integers, print to a buffer using libc */
snprintf(buf, sizeof(buf), "%lld", (int64_t)data->len);
snprintf(buf, sizeof(buf), "%"PRId64, (int64_t)data->len);
FCGX_FPrintF(this->req.out, "Content-Length: %s\n", buf);
if (mime)
{