Update of /cvsroot/gaim/gaim/plugins/gaim-remote
In directory sc8-pr-cvs1:/tmp/cvs-serv5460/plugins/gaim-remote
Modified Files:
remote.c
Log Message:
Code cleanup to get rid of all warnings for AMD64 from augustus at linuxhardware dot org
Index: remote.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/gaim-remote/remote.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -p -r1.13 -r1.14
--- remote.c 1 Oct 2003 04:09:53 -0000 1.13
+++ remote.c 30 Oct 2003 22:27:33 -0000 1.14
@@ -458,7 +458,7 @@ gaim_recv(GIOChannel *source, gchar *buf
GError *error = NULL;
while (total < len) {
- if (g_io_channel_read_chars(source, buf + total, len - total, &cur, &error) != G_IO_STATUS_NORMAL) {
+ if (g_io_channel_read_chars(source, buf + total, len - total, (gsize *) &cur, &error) != G_IO_STATUS_NORMAL) {
if (error)
g_error_free(error);
return -1;
|