Skip to content

Commit 05b6651

Browse files
author
Andre Malo
committed
this should save one or two cycles
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103767 13f79535-47bb-0310-9956-ffa450edef68
1 parent be571c4 commit 05b6651

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/loggers/mod_log_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ static const char *log_bytes_sent(request_rec *r, char *a)
393393
return "0";
394394
}
395395
else {
396-
return apr_psprintf(r->pool, "%" APR_OFF_T_FMT, r->bytes_sent);
396+
return apr_off_t_toa(r->pool, r->bytes_sent);
397397
}
398398
}
399399

0 commit comments

Comments
 (0)