From: rousskov <> Date: Wed, 4 Mar 1998 13:14:54 +0000 (+0000) Subject: - Fixed the wrong order of arguments to the debug(). X-Git-Tag: SQUID_3_0_PRE1~3935 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76e0060d5c6fa42281d1e109500be89e5eafe9b4;p=thirdparty%2Fsquid.git - Fixed the wrong order of arguments to the debug(). --- diff --git a/src/fd.cc b/src/fd.cc index f767304e6a..fffd6d5a2c 100644 --- 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); } }