Skip to content

Commit 26fe5fd

Browse files
committed
backport the last byte of r731963
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@732113 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3db43ac commit 26fe5fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/generators/mod_cgid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ static apr_status_t sock_writev(int fd, request_rec *r, int count, ...)
354354

355355
vec = (struct iovec *)apr_palloc(r->pool, count * sizeof(struct iovec));
356356
va_start(ap, count);
357-
for(i = 0; i < count; i++) {
357+
for (i = 0; i < count; i++) {
358358
vec[i].iov_base = va_arg(ap, caddr_t);
359359
vec[i].iov_len = va_arg(ap, apr_size_t);
360360
total_bytes += vec[i].iov_len;

0 commit comments

Comments
 (0)