summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2004-08-25 13:05:25 +0000
committerBill Stoddard <stoddard@apache.org>2004-08-25 13:05:25 +0000
commite427bd75b102f34ffc3c7166eae1abff1e6c5b3d (patch)
tree14e50cac2392e7ea511425ddcaca5e621ff58ede
parent816d6487d53582602866185b7a7dd0c4f889def0 (diff)
downloadapr-e427bd75b102f34ffc3c7166eae1abff1e6c5b3d.tar.gz
tweak coding style to match what was committed to HEAD
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/APR_0_9_BRANCH@65313 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--threadproc/win32/proc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/threadproc/win32/proc.c b/threadproc/win32/proc.c
index c9c1e88b0..bf1f3a0b0 100644
--- a/threadproc/win32/proc.c
+++ b/threadproc/win32/proc.c
@@ -307,8 +307,8 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
if (attr->errfn) {
attr->errfn(pool, rv,
apr_pstrcat(pool, "filepath_merge failed.",
- " currdir: ",attr->currdir,
- " progname: ",progname,NULL));
+ " currdir: ", attr->currdir,
+ " progname: ", progname,NULL));
}
return rv;
}
@@ -488,7 +488,7 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
attr->errfn(pool, rv,
apr_pstrcat(pool,
"utf8 to ucs2 conversion failed"
- " on this string: ",env[i],NULL));
+ " on this string: ", env[i], NULL));
}
return rv;
}
@@ -540,7 +540,7 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
attr->errfn(pool, rv,
apr_pstrcat(pool,
"utf8 to ucs2 conversion failed"
- " on progname: ",progname,NULL));
+ " on progname: ", progname, NULL));
}
return rv;
}
@@ -556,7 +556,7 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
attr->errfn(pool, rv,
apr_pstrcat(pool,
"utf8 to ucs2 conversion failed"
- " on cmdline: ",cmdline,NULL));
+ " on cmdline: ", cmdline, NULL));
}
return rv;
}
@@ -574,7 +574,7 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
attr->errfn(pool, rv,
apr_pstrcat(pool,
"utf8 to ucs2 conversion failed"
- " on currdir: ",attr->currdir,NULL));
+ " on currdir: ", attr->currdir, NULL));
}
return rv;
}