25 lines
726 B
Plaintext
25 lines
726 B
Plaintext
$NetBSD: patch-ai,v 1.1 2006/10/30 03:33:59 jlam Exp $
|
|
|
|
--- protz.c.orig 2003-05-29 02:08:46.000000000 -0400
|
|
+++ protz.c
|
|
@@ -743,7 +743,7 @@ int ilocal ATTRIBUTE_UNUSED;
|
|
int iremote ATTRIBUTE_UNUSED;
|
|
long ipos ATTRIBUTE_UNUSED;
|
|
{
|
|
- DEBUG_MESSAGE1 (DEBUG_PROTO, "fzsenddata: %d bytes", cdata);
|
|
+ DEBUG_MESSAGE1 (DEBUG_PROTO, "fzsenddata: %ld bytes", (long) cdata);
|
|
|
|
if (! fzsend_data (qdaemon, zdata, cdata, cdata == 0))
|
|
return FALSE;
|
|
@@ -819,8 +819,8 @@ boolean fendofmessage;
|
|
default : type = "UNKNOWN!!!"; break;
|
|
}
|
|
DEBUG_MESSAGE3 (DEBUG_PROTO,
|
|
- "fzsend_data: %s, pos 0x%lx, %d bytes",
|
|
- type, wpZtxpos, n);
|
|
+ "fzsend_data: %s, pos 0x%lx, %ld bytes",
|
|
+ type, wpZtxpos, (long) n);
|
|
}
|
|
#endif
|
|
|