Use u_int32_t for the size of hash_cb(), not size_t.
Jens Hamisch [Tue, 14 Nov 2000 19:03:55 +0000 (20:03 +0100)]
Subject: [ID 20001114.003] Solaris 8, 64 Bit DB_file patch
Message-Id: <20001114190355.A20559@Strawberry.COM>

p4raw-id: //depot/perl@7692

ext/DB_File/DB_File.xs

index cb8fd80..f6df68a 100644 (file)
@@ -586,11 +586,11 @@ const DBT * key2 ;
 
 static DB_Hash_t
 #ifdef CAN_PROTOTYPE
-hash_cb(const void *data, size_t size)
+hash_cb(const void *data, u_int32_t size)
 #else
 hash_cb(data, size)
 const void * data ;
-size_t size ;
+u_int32_t size ;
 #endif
 {
 #ifdef dTHX