]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
- Fixed the wrong order of arguments to the debug().
authorrousskov <>
Wed, 4 Mar 1998 13:14:54 +0000 (13:14 +0000)
committerrousskov <>
Wed, 4 Mar 1998 13:14:54 +0000 (13:14 +0000)
src/fd.cc

index f767304e6ac9ed4186770e8cf85c319329b942dd..fffd6d5a2c9b4cde6dfb90fa02bcb9bdde9e1711 100644 (file)
--- a/src/fd.cc
+++ b/src/fd.cc
@@ -1,6 +1,6 @@
 
 /*
- * $Id: fd.cc,v 1.22 1998/03/03 22:49:28 wessels Exp $
+ * $Id: fd.cc,v 1.23 1998/03/04 06:14:54 rousskov Exp $
  *
  * DEBUG: section 51    Filedescriptor Functions
  * AUTHOR: Duane Wessels
@@ -132,7 +132,8 @@ fdDumpOpen(void)
        if (i == fileno(debug_log))
            continue;
        debug(51, 1) ("Open FD %s %4d %s\n",
-           i, F->type == FD_READ ? "reading" : "writing", F->desc);
+           F->type == FD_READ ? "reading" : "writing",
+           i, F->desc);
     }
 }