stoddard 2004/08/25 06:05:25
Modified: threadproc/win32 Tag: APR_0_9_BRANCH proc.c
Log:
tweak coding style to match what was committed to HEAD
Revision Changes Path
No revision
No revision
1.90.2.4 +6 -6 apr/threadproc/win32/proc.c
Index: proc.c
===================================================================
RCS file: /home/cvs/apr/threadproc/win32/proc.c,v
retrieving revision 1.90.2.3
retrieving revision 1.90.2.4
diff -u -r1.90.2.3 -r1.90.2.4
--- proc.c 25 Aug 2004 12:56:40 -0000 1.90.2.3
+++ proc.c 25 Aug 2004 13:05:25 -0000 1.90.2.4
@@ -307,8 +307,8 @@
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 @@
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 @@
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 @@
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 @@
attr->errfn(pool, rv,
apr_pstrcat(pool,
"utf8 to ucs2 conversion failed"
- " on currdir:
",attr->currdir,NULL));
+ " on currdir: ", attr->currdir,
NULL));
}
return rv;
}