Use gsize instead of gint. From Miroslaw Dobrzanski-Neumann

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)
This commit is contained in:
Sebastian Wilhelmi 2002-04-08 08:36:35 +00:00 committed by Sebastian Wilhelmi
parent 02def4879c
commit e7d925595c
9 changed files with 44 additions and 2 deletions

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View 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> 2002-04-08 Stanislav Brabec <utx@penguin.cz>
* cs.po: Added Czech (cs) to ALL_LINGUAS. * cs.po: Added Czech (cs) to ALL_LINGUAS.

View File

@ -64,7 +64,7 @@ read_all (int fd,
guint *bytes_read) guint *bytes_read)
{ {
guint left = nbytes; guint left = nbytes;
guint nb; gsize nb;
GIOError error = G_IO_ERROR_NONE; GIOError error = G_IO_ERROR_NONE;
char *bufp = buffer; char *bufp = buffer;

View File

@ -134,7 +134,7 @@ static int
test_file (const gchar *filename) test_file (const gchar *filename)
{ {
gchar *contents; gchar *contents;
gint length; gsize length;
GError *error; GError *error;
GMarkupParseContext *context; GMarkupParseContext *context;