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:
parent
865533f066
commit
15a9f2ede6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112895
11
net-im/meanwhile/files/patch-src_channel.c
Normal file
11
net-im/meanwhile/files/patch-src_channel.c
Normal 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));
|
||||
|
11
net/meanwhile/files/patch-src_channel.c
Normal file
11
net/meanwhile/files/patch-src_channel.c
Normal 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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user