mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
16 lines
474 B
Plaintext
16 lines
474 B
Plaintext
$NetBSD: patch-lib_tobjstrm_cc,v 1.1 2012/06/28 03:16:07 dholland Exp $
|
|
|
|
- Use intptr_t to deal with pointer-sized values.
|
|
|
|
--- lib/tobjstrm.cc~ 2012-06-28 02:28:23.000000000 +0000
|
|
+++ lib/tobjstrm.cc
|
|
@@ -41,7 +41,7 @@ extern "C" {
|
|
|
|
const uchar nullStringLen = UCHAR_MAX;
|
|
|
|
-TStreamableClass::TStreamableClass(const char *n, BUILDER b, int d ) :
|
|
+TStreamableClass::TStreamableClass(const char *n, BUILDER b, intptr_t d ) :
|
|
name( n ),
|
|
build( b ),
|
|
delta( d )
|