From: Derrick Brashear Date: Thu, 6 Sep 2012 18:27:13 +0000 (-0400) Subject: tests: deal with one more unsigned warning X-Git-Tag: openafs-stable-1_8_0pre1~2034 X-Git-Url: http://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=fe2641e35b9cf540132fdba828bdc097392a899e tests: deal with one more unsigned warning C90 wants this unsigned hint before it will dtrt Change-Id: Ic60b0336df7e8c4373582ffa352f4042ebc021c1 Reviewed-on: http://gerrit.openafs.org/8050 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/tests/opr/jhash-t.c b/tests/opr/jhash-t.c index 9dd7e1d..c17a7fb 100644 --- a/tests/opr/jhash-t.c +++ b/tests/opr/jhash-t.c @@ -60,7 +60,7 @@ main(int argc, char **argv) is_int(0xdeadbeef, opr_jhash_opaque("", 0, 0), "Hashing an empty string works"); - is_int(2748273291, + is_int(2748273291UL, opr_jhash_opaque("Four score and seven years ago", 30, 0), "Hashing a string with a 0 initval works"); is_int(1389900913,