1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

Fix another 64-bit build problem.

Reported by:	pointyhat via kris
This commit is contained in:
Joe Marcus Clarke 2004-07-04 07:27:34 +00:00
parent 865533f066
commit 15a9f2ede6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112895
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- src/channel.c.orig Mon Jun 21 12:14:14 2004
+++ src/channel.c Sun Jul 4 03:26:25 2004
@@ -293,7 +293,7 @@
if(chan->status == mwChannel_OPEN) {
- g_message("sending %u bytes on channel 0x%08x", msg->data.len, chan->id);
+ g_message("sending %lu bytes on channel 0x%08x", (unsigned long)(msg->data.len), chan->id);
ret = mwSession_send(chan->session, (struct mwMessage *) msg);
mwMessage_free(MW_MESSAGE(msg));

View File

@ -0,0 +1,11 @@
--- src/channel.c.orig Mon Jun 21 12:14:14 2004
+++ src/channel.c Sun Jul 4 03:26:25 2004
@@ -293,7 +293,7 @@
if(chan->status == mwChannel_OPEN) {
- g_message("sending %u bytes on channel 0x%08x", msg->data.len, chan->id);
+ g_message("sending %lu bytes on channel 0x%08x", (unsigned long)(msg->data.len), chan->id);
ret = mwSession_send(chan->session, (struct mwMessage *) msg);
mwMessage_free(MW_MESSAGE(msg));