about summary refs log tree commit diff
path: root/lib/libppmcmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libppmcmap.c')
-rw-r--r--lib/libppmcmap.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/libppmcmap.c b/lib/libppmcmap.c
index 1fd87441..1f7e459d 100644
--- a/lib/libppmcmap.c
+++ b/lib/libppmcmap.c
@@ -20,10 +20,17 @@
 
 #define HASH_SIZE 20023
 
-#define ppm_hashpixel(p) ( ( ( (long) PPM_GETR(p) * 33023 + \
-                               (long) PPM_GETG(p) * 30013 + \
-                               (long) PPM_GETB(p) * 27011 ) \
-                             & 0x7fffffff ) % HASH_SIZE )
+
+
+static __inline__ unsigned int
+ppm_hashpixel(pixel const p) {
+
+    return (unsigned int) (PPM_GETR(p) * 33 * 33
+                           + PPM_GETG(p) * 33
+                           + PPM_GETB(p)) % HASH_SIZE;
+}
+
+
 
 colorhist_vector
 ppm_computecolorhist( pixel ** const pixels,