Show
Ignore:
Timestamp:
08/08/05 08:49:45 (4 years ago)
Author:
ghudson
Message:

Import gaim 1.4.0.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/vendor/third/gaim/plugins/gaim-remote/remote.c

    r22056 r22221  
    473473{ 
    474474        gint total = 0; 
    475         guint cur; 
     475        gsize cur; 
    476476 
    477477        GError *error = NULL; 
    478478 
    479479        while (total < len) { 
    480                 if (g_io_channel_read_chars(source, buf + total, len - total, (gsize *) &cur, &error) != G_IO_STATUS_NORMAL) { 
     480                if (g_io_channel_read_chars(source, buf + total, len - total, &cur, &error) != G_IO_STATUS_NORMAL) { 
    481481                        if (error) 
    482482                                g_error_free(error);