From: Jens Hamisch Date: Tue, 14 Nov 2000 19:03:55 +0000 (+0100) Subject: Use u_int32_t for the size of hash_cb(), not size_t. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=240a5ecf567cf5d54bbf1144872c0b74f2a322b7;p=p5sagit%2Fp5-mst-13.2.git Use u_int32_t for the size of hash_cb(), not size_t. Subject: [ID 20001114.003] Solaris 8, 64 Bit DB_file patch Message-Id: <20001114190355.A20559@Strawberry.COM> p4raw-id: //depot/perl@7692 --- diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs index cb8fd80..f6df68a 100644 --- a/ext/DB_File/DB_File.xs +++ b/ext/DB_File/DB_File.xs @@ -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