From 97a883999e22596c26e4fd9f2dfe8b2fc072584e Mon Sep 17 00:00:00 2001 From: wessels <> Date: Mon, 2 Jun 1997 05:21:37 +0000 Subject: [PATCH] gindent --- src/stmem.cc | 4 ++-- src/store.cc | 4 ++-- src/store_dir.cc | 2 +- src/tools.cc | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/stmem.cc b/src/stmem.cc index 9e8bd82b4a..bcb923d6eb 100644 --- a/src/stmem.cc +++ b/src/stmem.cc @@ -1,6 +1,6 @@ /* - * $Id: stmem.cc,v 1.41 1997/05/23 05:15:57 wessels Exp $ + * $Id: stmem.cc,v 1.42 1997/06/01 23:21:49 wessels Exp $ * * DEBUG: section 19 Memory Primitives * AUTHOR: Harvest Derived @@ -259,7 +259,7 @@ memCopy(const mem_ptr mem, off_t offset, char *buf, size_t size) if (p == NULL) return -1; /* fatal_dump("memCopy: NULL mem_node"); *//* Can happen on async */ - assert (size > 0); + assert(size > 0); /* Seek our way into store */ while ((t_off + p->len) < offset) { t_off += p->len; diff --git a/src/store.cc b/src/store.cc index 386be60e77..ae52a391f2 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.246 1997/06/01 18:19:56 wessels Exp $ + * $Id: store.cc,v 1.247 1997/06/01 23:21:50 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -1061,7 +1061,7 @@ storeSwapInStart(StoreEntry * e, SIH * callback, void *callback_data) return; } if (!BIT_TEST(e->flag, ENTRY_VALIDATED)) { - if (storeDirMapBitTest(e->swap_file_number)) { + if (storeDirMapBitTest(e->swap_file_number)) { /* someone took our file while we weren't looking */ callback(callback_data, -1); return; diff --git a/src/store_dir.cc b/src/store_dir.cc index ffeaff2aa5..457a7274ba 100644 --- a/src/store_dir.cc +++ b/src/store_dir.cc @@ -69,7 +69,7 @@ storeAddSwapDisk(const char *path, int size, int l1, int l2, int read_only) xfree(SwapDirs); SwapDirs = tmp; } - debug(20,1,"Creating Swap Dir #%d in %s\n", ncache_dirs+1, path); + debug(20, 1, "Creating Swap Dir #%d in %s\n", ncache_dirs + 1, path); tmp = SwapDirs + ncache_dirs; tmp->path = xstrdup(path); tmp->max_size = size; diff --git a/src/tools.cc b/src/tools.cc index bc0508623c..6b0e5155bf 100644 --- a/src/tools.cc +++ b/src/tools.cc @@ -1,6 +1,6 @@ /* - * $Id: tools.cc,v 1.107 1997/05/23 20:46:13 wessels Exp $ + * $Id: tools.cc,v 1.108 1997/06/01 23:21:38 wessels Exp $ * * DEBUG: section 21 Misc Functions * AUTHOR: Harvest Derived @@ -445,7 +445,7 @@ sig_child(int sig) #else pid = waitpid(-1, &status, WNOHANG); #endif - /* no debug() here; bad things happen if the signal is delivered during _db_print() */ + /* no debug() here; bad things happen if the signal is delivered during _db_print() */ #if HAVE_SIGACTION } while (pid > 0); #else -- 2.47.2