Remove debug spew

svn path=/trunk/; revision=7206
This commit is contained in:
Matthias Clasen 2008-07-19 01:15:12 +00:00
parent 787dbdbcd5
commit 48867a895c
2 changed files with 4 additions and 4 deletions

@ -1,3 +1,7 @@
2008-07-18 Matthias Clasen <mclasen@redhat.com>
* gcontenttype.c: Remove debug spew
2008-07-18 Matthias Clasen <mclasen@redhat.com> 2008-07-18 Matthias Clasen <mclasen@redhat.com>
Bug 543560 enable gio-FEN back-end warnings on Solaris will crash Bug 543560 enable gio-FEN back-end warnings on Solaris will crash

@ -1277,14 +1277,12 @@ read_tree_magic_from_directory (const gchar *prefix)
static void static void
xdg_mime_reload (void *user_data) xdg_mime_reload (void *user_data)
{ {
g_print ("need_reload = TRUE\n");
need_reload = TRUE; need_reload = TRUE;
} }
static void static void
tree_magic_shutdown (void) tree_magic_shutdown (void)
{ {
g_print ("tree_magic_shutdown\n");
g_list_foreach (tree_matches, (GFunc)tree_match_free, NULL); g_list_foreach (tree_matches, (GFunc)tree_match_free, NULL);
g_list_free (tree_matches); g_list_free (tree_matches);
tree_matches = NULL; tree_matches = NULL;
@ -1298,7 +1296,6 @@ tree_magic_init (void)
const gchar * const * dirs; const gchar * const * dirs;
int i; int i;
g_print ("tree_magic_init\n");
if (!initialized) if (!initialized)
{ {
initialized = TRUE; initialized = TRUE;
@ -1313,7 +1310,6 @@ tree_magic_init (void)
tree_magic_shutdown (); tree_magic_shutdown ();
g_print ("reloading\n");
dir = g_get_user_data_dir (); dir = g_get_user_data_dir ();
read_tree_magic_from_directory (dir); read_tree_magic_from_directory (dir);
dirs = g_get_system_data_dirs (); dirs = g_get_system_data_dirs ();