]> granicus.if.org Git - apache/commitdiff
tiny style fix for r729579
authorJeff Trawick <trawick@apache.org>
Tue, 6 Jan 2009 14:50:47 +0000 (14:50 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 6 Jan 2009 14:50:47 +0000 (14:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@731963 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_cgid.c

index 0496e38028c8bf5bc976c589d67f4c195beacaf9..b9e56ec2f49e73b9b820081356f4278bd0462832 100644 (file)
@@ -352,7 +352,7 @@ static apr_status_t sock_writev(int fd, request_rec *r, int count, ...)
 
     vec = (struct iovec *)apr_palloc(r->pool, count * sizeof(struct iovec));
     va_start(ap, count);
-    for(i=0; i<count; i++) {
+    for (i = 0; i < count; i++) {
         vec[i].iov_base = va_arg(ap, caddr_t);
         vec[i].iov_len  = va_arg(ap, int);
         total_bytes += vec[i].iov_len;