Mercurial > audlegacy-plugins
changeset 3083:01d2f931aeeb
gio: remove debug statement
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Wed, 29 Apr 2009 20:09:59 -0500 |
parents | abb8604cb718 |
children | e02b6092f70e |
files | src/gio/gio.c |
diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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 }