nghttpx: Use %lld instead of PRId64

This commit is contained in:
Tatsuhiro Tsujikawa 2014-07-05 18:51:55 +09:00
parent 0ce848a611
commit 2e6d5e9bd0
1 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ void upstream_accesslog(const std::string& client_ip, unsigned int status_code,
} }
static const char fmt[] = static const char fmt[] =
"%s - - [%s] \"%s %s HTTP/%u.%u\" %u %" PRId64 " \"-\" \"%s\"\n"; "%s - - [%s] \"%s %s HTTP/%u.%u\" %u %lld \"-\" \"%s\"\n";
rv = snprintf(buf, sizeof(buf), fmt, rv = snprintf(buf, sizeof(buf), fmt,
client_ip.c_str(), client_ip.c_str(),
@ -207,7 +207,7 @@ void upstream_accesslog(const std::string& client_ip, unsigned int status_code,
major, major,
minor, minor,
status_code, status_code,
response_bodylen, (long long int)response_bodylen,
user_agent); user_agent);
if(rv < 0) { if(rv < 0) {