From b68ee087071c21bf3830c80d80dff0fe1af5aaf8 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sun, 24 May 1998 09:47:19 +0000 Subject: [PATCH] compiler warning --- src/access_log.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/access_log.cc b/src/access_log.cc index 45c00fe1b9..6b9a200c69 100644 --- a/src/access_log.cc +++ b/src/access_log.cc @@ -1,7 +1,7 @@ /* - * $Id: access_log.cc,v 1.29 1998/05/24 03:41:06 wessels Exp $ + * $Id: access_log.cc,v 1.30 1998/05/24 03:47:19 wessels Exp $ * * DEBUG: section 46 Access Log * AUTHOR: Duane Wessels @@ -402,7 +402,7 @@ fvdbDumpTable(StoreEntry * e, hash_table * hash) if (hash == NULL) return; hash_first(hash); - while (h = hash_next(hash)) { + while ((h = hash_next(hash))) { fv = (fvdb_entry *) h; storeAppendPrintf(e, "%9d %s\n", fv->n, fv->key); } -- 2.47.3