[PATCH] mkfs.ubifs: use common ARRAY_SIZE

Mike Frysinger vapier at gentoo.org
Thu Sep 23 21:52:42 EDT 2010


Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 mkfs.ubifs/hashtable/hashtable.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/mkfs.ubifs/hashtable/hashtable.c b/mkfs.ubifs/hashtable/hashtable.c
index 763357e..b751c62 100644
--- a/mkfs.ubifs/hashtable/hashtable.c
+++ b/mkfs.ubifs/hashtable/hashtable.c
@@ -1,5 +1,6 @@
 /* Copyright (C) 2004 Christopher Clark <firstname.lastname at cl.cam.ac.uk> */
 
+#include "common.h"
 #include "hashtable.h"
 #include "hashtable_private.h"
 #include <stdlib.h>
@@ -21,7 +22,7 @@ static const unsigned int primes[] = {
 50331653, 100663319, 201326611, 402653189,
 805306457, 1610612741
 };
-const unsigned int prime_table_length = sizeof(primes)/sizeof(primes[0]);
+const unsigned int prime_table_length = ARRAY_SIZE(primes);
 const float max_load_factor = 0.65;
 
 /*****************************************************************************/
-- 
1.7.3




More information about the linux-mtd mailing list