# HG changeset patch # User William Pitcock # Date 1241053799 18000 # Node ID 01d2f931aeeb46f806b2e9c8bfd6e718764c9ec0 # Parent abb8604cb718edca4048a1f23055a8dbe38369b9 gio: remove debug statement diff -r abb8604cb718 -r 01d2f931aeeb src/gio/gio.c --- a/src/gio/gio.c Wed Apr 29 20:04:21 2009 -0500 +++ b/src/gio/gio.c Wed Apr 29 20:09:59 2009 -0500 @@ -48,8 +48,6 @@ handle = g_slice_new0(VFSGIOHandle); handle->file = g_file_new_for_uri(path); - g_print("open %s\n", path); - if (*mode == 'r') { handle->istream = g_file_read(handle->file, NULL, &error); @@ -306,13 +304,13 @@ static void init(void) { - aud_vfs_register_transport(&file_const); + aud_vfs_register_transport(&file_const); } static void cleanup(void) { #if 0 - aud_vfs_unregister_transport(&file_const); + aud_vfs_unregister_transport(&file_const); #endif }