Fix args to g_type_init ().

Thu Jun 28 21:54:19 2001  Owen Taylor  <otaylor@redhat.com>

	* make-inline-pixbuf.c test-gdk-pixbuf.c test-loaders.c
	gdk-pixbuf-csource.c: Fix args to g_type_init ().
This commit is contained in:
Owen Taylor 2001-06-29 02:53:01 +00:00 committed by Owen Taylor
parent 0bee26c7ba
commit 0a2fce4577
5 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Thu Jun 28 21:54:19 2001 Owen Taylor <otaylor@redhat.com>
* make-inline-pixbuf.c test-gdk-pixbuf.c test-loaders.c
gdk-pixbuf-csource.c: Fix args to g_type_init ().
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk-pixdata.c: <string.h>

View File

@ -76,7 +76,7 @@ main (int argc,
GError *error = NULL;
/* initialize glib/GdkPixbuf */
g_type_init (0);
g_type_init ();
/* parse args and do fast exits */
parse_args (&argc, &argv);

View File

@ -153,7 +153,7 @@ main (int argc, char **argv)
gchar *outfilename;
int i;
g_type_init (0);
g_type_init ();
if (argc < 4)

View File

@ -230,7 +230,7 @@ main (int argc, char **argv)
result = EXIT_SUCCESS;
g_type_init (G_TYPE_DEBUG_NONE);
g_type_init ();
/* Run some tests. */
if (!simple_composite_test ()) {

View File

@ -370,7 +370,7 @@ main (int argc, char **argv)
}
g_random_set_seed (seed);
g_type_init (G_TYPE_DEBUG_NONE);
g_type_init ();
g_log_set_fatal_mask (NULL, G_LOG_LEVEL_WARNING | G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
putenv ("GDK_PIXBUF_MODULEDIR="BUILT_MODULES_DIR);