32 lines
699 B
Text
32 lines
699 B
Text
$NetBSD: patch-aa,v 1.3 2003/02/13 00:29:53 dmcmahill Exp $
|
|
|
|
--- src/iochannel.c.orig Wed Aug 14 12:51:02 2002
|
|
+++ src/iochannel.c Wed Feb 12 09:58:27 2003
|
|
@@ -51,5 +51,5 @@
|
|
{
|
|
guint nleft;
|
|
- guint nwritten;
|
|
+ gsize nwritten;
|
|
gchar* ptr;
|
|
GIOError error = G_IO_ERROR_NONE;
|
|
@@ -108,5 +108,5 @@
|
|
{
|
|
guint nleft;
|
|
- guint nread;
|
|
+ gsize nread;
|
|
gchar* ptr;
|
|
GIOError error = G_IO_ERROR_NONE;
|
|
@@ -476,5 +476,5 @@
|
|
else if (condition & G_IO_OUT)
|
|
{
|
|
- guint bytes_written;
|
|
+ gsize bytes_written;
|
|
|
|
if (g_io_channel_write(iochannel,
|
|
@@ -662,5 +662,5 @@
|
|
GIOError error;
|
|
guint bytes_to_read;
|
|
- guint bytes_read;
|
|
+ gsize bytes_read;
|
|
gint bytes_processed;
|
|
|