striker 2002/07/13 14:38:02
Modified: memory/unix apr_pools.c
Log:
Detabbify previous commit... The offending party has been slapped on the
wrists by the style police.
Revision Changes Path
1.183 +7 -7 apr/memory/unix/apr_pools.c
Index: apr_pools.c
===================================================================
RCS file: /home/cvs/apr/memory/unix/apr_pools.c,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- apr_pools.c 13 Jul 2002 21:34:36 -0000 1.182
+++ apr_pools.c 13 Jul 2002 21:38:02 -0000 1.183
@@ -926,7 +926,7 @@
* in reusing a block that can't even hold the NUL byte.
*/
if (size < APR_PSPRINTF_MIN_STRINGSIZE)
- size = APR_PSPRINTF_MIN_STRINGSIZE;
+ size = APR_PSPRINTF_MIN_STRINGSIZE;
node = active->next;
if (!ps->got_a_new_node && node->first_avail + size < node->endp) {
@@ -1006,13 +1006,13 @@
* room to hold the NUL terminator.
*/
if (ps.node->first_avail == ps.node->endp) {
- if (psprintf_flush(&ps.vbuff) == -1) {
- if (pool->abort_fn) {
- pool->abort_fn(APR_ENOMEM);
- }
+ if (psprintf_flush(&ps.vbuff) == -1) {
+ if (pool->abort_fn) {
+ pool->abort_fn(APR_ENOMEM);
+ }
- return NULL;
- }
+ return NULL;
+ }
}
if (apr_vformatter(psprintf_flush, &ps.vbuff, fmt, ap) == -1) {