diff options
author | marcus <marcus@FreeBSD.org> | 2004-07-04 15:27:34 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-07-04 15:27:34 +0800 |
commit | 29442cfa8ac46615edc02435232c373840baf58c (patch) | |
tree | a731ecddae7ab91e7786f79744caa570eee357ba /net-im/meanwhile | |
parent | 215567acf4abd8cd2161b732b47060ce09e92af0 (diff) | |
download | freebsd-ports-gnome-29442cfa8ac46615edc02435232c373840baf58c.tar.gz freebsd-ports-gnome-29442cfa8ac46615edc02435232c373840baf58c.tar.zst freebsd-ports-gnome-29442cfa8ac46615edc02435232c373840baf58c.zip |
Fix another 64-bit build problem.
Reported by: pointyhat via kris
Diffstat (limited to 'net-im/meanwhile')
-rw-r--r-- | net-im/meanwhile/files/patch-src_channel.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-im/meanwhile/files/patch-src_channel.c b/net-im/meanwhile/files/patch-src_channel.c new file mode 100644 index 000000000000..80a07719771e --- /dev/null +++ b/net-im/meanwhile/files/patch-src_channel.c @@ -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)); + |