]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
compiler warning
authorwessels <>
Sun, 24 May 1998 09:47:19 +0000 (09:47 +0000)
committerwessels <>
Sun, 24 May 1998 09:47:19 +0000 (09:47 +0000)
src/access_log.cc

index 45c00fe1b942f79b9700729e7415ed8c26b96328..6b9a200c69d24f37687cd278848bcca2987a942c 100644 (file)
@@ -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);
     }