From 8eeeefad63cd3ffc48250561838a70f3cb2cfa77 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 11 Jun 2009 20:25:49 -0700 Subject: [PATCH] Fix type mismatch between value_hash prototype and definition. Thanks to michel for pointing out the problem. --- src/data/value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/value.h b/src/data/value.h index 046a9a3a..905f0823 100644 --- a/src/data/value.h +++ b/src/data/value.h @@ -72,7 +72,7 @@ void value_copy_buf_rpad (union value *dst, int dst_width, void value_set_missing (union value *, int width); int value_compare_3way (const union value *, const union value *, int width); bool value_equal (const union value *, const union value *, int width); -size_t value_hash (const union value *, int width, unsigned int basis); +unsigned int value_hash (const union value *, int width, unsigned int basis); bool value_is_resizable (const union value *, int old_width, int new_width); bool value_needs_resize (int old_width, int new_width); -- 2.30.2