tests: deal with one more unsigned warning
authorDerrick Brashear <shadow@your-file-system.com>
Thu, 6 Sep 2012 18:27:13 +0000 (14:27 -0400)
committerDerrick Brashear <shadow@your-file-system.com>
Fri, 7 Sep 2012 04:31:56 +0000 (21:31 -0700)
C90 wants this unsigned hint before it will dtrt

Change-Id: Ic60b0336df7e8c4373582ffa352f4042ebc021c1
Reviewed-on: http://gerrit.openafs.org/8050
Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
Tested-by: Derrick Brashear <shadow@your-file-system.com>

tests/opr/jhash-t.c

index 9dd7e1d..c17a7fb 100644 (file)
@@ -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,