]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
silence 'Different types treated as unsigned for >=.' warning
authorMark Andrews <marka@isc.org>
Mon, 16 Feb 2009 03:17:57 +0000 (03:17 +0000)
committerMark Andrews <marka@isc.org>
Mon, 16 Feb 2009 03:17:57 +0000 (03:17 +0000)
lib/isc/mem.c

index abb9027243bdaae84f95361073c9fba85d72e00e..7d237329b21d99379b8547da47ce4bc6af9fa2e7 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mem.c,v 1.116.18.24 2009/02/11 03:11:39 jinmei Exp $ */
+/* $Id: mem.c,v 1.116.18.25 2009/02/16 03:17:57 marka Exp $ */
 
 /*! \file */
 
@@ -51,7 +51,7 @@ LIBISC_EXTERNAL_DATA unsigned int isc_mem_debugging = ISC_MEM_DEBUGGING;
 
 #define DEF_MAX_SIZE           1100
 #define DEF_MEM_TARGET         4096
-#define ALIGNMENT_SIZE         8               /*%< must be a power of 2 */
+#define ALIGNMENT_SIZE         8U              /*%< must be a power of 2 */
 #define NUM_BASIC_BLOCKS       64              /*%< must be > 1 */
 #define TABLE_INCREMENT                1024
 #define DEBUGLIST_COUNT                1024