From: Ben Pfaff <blp@gnu.org>
Date: Fri, 12 Jun 2009 03:25:49 +0000 (-0700)
Subject: Fix type mismatch between value_hash prototype and definition.
X-Git-Tag: sav-api~551
X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=942369e2c5a4ccb387dddb479e95c8ea7a60e7db;p=pspp

Fix type mismatch between value_hash prototype and definition.

Thanks to michel <michel@cecaps.ufmg.br> for pointing out the problem.
---

diff --git a/src/data/value.h b/src/data/value.h
index 046a9a3aa6..905f0823d5 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);