blob: 8475ed819cf11bc9e7e1534cda5f81356882c16d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ac,v 1.1 2003/02/13 00:29:53 dmcmahill Exp $
--- examples/echoclient.c.orig Thu Sep 26 13:58:59 2002
+++ examples/echoclient.c Wed Feb 12 10:03:38 2003
@@ -278,5 +278,5 @@
GIOError error;
gchar buffer[1024];
- guint bytes_read;
+ gsize bytes_read;
/* Read the data into our buffer */
@@ -332,5 +332,5 @@
GIOError error;
gchar buffer[1024];
- guint bytes_read;
+ gsize bytes_read;
/* Read the data into our buffer */
@@ -451,5 +451,5 @@
GIOError error;
gchar buffer[1024];
- guint bytes_read;
+ gsize bytes_read;
/* Read the data into our buffer */
|