From: Ben Pfaff Date: Fri, 12 Jun 2009 03:25:49 +0000 (-0700) Subject: Fix type mismatch between value_hash prototype and definition. X-Git-Tag: build37~71 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=8eeeefad63cd3ffc48250561838a70f3cb2cfa77 Fix type mismatch between value_hash prototype and definition. Thanks to michel for pointing out the problem. --- 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);