Use gsize instead of gint. From Miroslaw Dobrzanski-Neumann
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>
Mon, 8 Apr 2002 08:36:35 +0000 (08:36 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Mon, 8 Apr 2002 08:36:35 +0000 (08:36 +0000)
2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* tests/gio-test.c, tests/markup-test.c: Use gsize instead of
gint. From Miroslaw Dobrzanski-Neumann
<mne@mosaic-ag.com>. (#77982)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/gio-test.c
tests/markup-test.c

index 3a65e8d..09fdefe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 3a65e8d..09fdefe 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 3a65e8d..09fdefe 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 3a65e8d..09fdefe 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 3a65e8d..09fdefe 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 3a65e8d..09fdefe 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 3a65e8d..09fdefe 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
+       gint. From Miroslaw Dobrzanski-Neumann
+       <mne@mosaic-ag.com>. (#77982)
+       
 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
 
         * cs.po: Added Czech (cs) to ALL_LINGUAS.
index 9f48ac4..ccbae3f 100644 (file)
@@ -64,7 +64,7 @@ read_all (int         fd,
          guint      *bytes_read)
 {
   guint left = nbytes;
-  guint nb;
+  gsize nb;
   GIOError error = G_IO_ERROR_NONE;
   char *bufp = buffer;
 
index fa75a30..53b86c2 100644 (file)
@@ -134,7 +134,7 @@ static int
 test_file (const gchar *filename)
 {
   gchar *contents;
-  gint   length;
+  gsize  length;
   GError *error;
   GMarkupParseContext *context;