mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-24 04:03:34 -04:00
33 lines
697 B
Plaintext
33 lines
697 B
Plaintext
$NetBSD: patch-aa,v 1.1.1.1 2003/04/15 11:49:02 wiz 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;
|
|
|