[or-cvs] r11010: Fix warning aobut unused parameter on platforms without mall (in tor/trunk: . src/common)

nickm at seul.org nickm at seul.org
Wed Aug 1 15:57:07 UTC 2007


Author: nickm
Date: 2007-08-01 11:57:07 -0400 (Wed, 01 Aug 2007)
New Revision: 11010

Modified:
   tor/trunk/
   tor/trunk/src/common/util.c
Log:
 r13871 at Kushana:  nickm | 2007-07-31 08:10:58 -0700
 Fix warning aobut unused parameter on platforms without mallinfo.



Property changes on: tor/trunk
___________________________________________________________________
 svk:merge ticket from /tor/trunk [r14024] on 8246c3cf-6607-4228-993b-4d95d33730f1
 svk:merge ticket from /tor/trunk [r13871] on c95137ef-5f19-0410-b913-86e773d04f59

Modified: tor/trunk/src/common/util.c
===================================================================
--- tor/trunk/src/common/util.c	2007-07-31 09:39:40 UTC (rev 11009)
+++ tor/trunk/src/common/util.c	2007-08-01 15:57:07 UTC (rev 11010)
@@ -228,6 +228,8 @@
       mi.arena, mi.ordblks, mi.smblks, mi.hblks,
       mi.hblkhd, mi.usmblks, mi.fsmblks, mi.uordblks, mi.fordblks,
       mi.keepcost);
+#else
+  (void)severity;
 #endif
 }
 



More information about the tor-commits mailing list