changeset 2296:4816e35abc02

make wav.so to be loaded.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Sat, 12 Jan 2008 19:42:48 +0900
parents 19cb07bbedfa
children cfe45e6861f7
files src/wav/wav-sndfile.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/wav/wav-sndfile.c	Sat Jan 12 11:22:44 2008 +0100
+++ b/src/wav/wav-sndfile.c	Sat Jan 12 19:42:48 2008 +0900
@@ -67,15 +67,15 @@
 }
 static sf_count_t sf_vread (void *ptr, sf_count_t count, void *user_data)
 {
-    return vfs_fread(ptr, 1, count, user_data);
+    return aud_vfs_fread(ptr, 1, count, user_data);
 }
 static sf_count_t sf_vwrite (const void *ptr, sf_count_t count, void *user_data)
 {
-    return vfs_fwrite(ptr, 1, count, user_data);
+    return aud_vfs_fwrite(ptr, 1, count, user_data);
 }
 static sf_count_t sf_tell (void *user_data)
 {
-    return vfs_ftell(user_data);
+    return aud_vfs_ftell(user_data);
 }
 static SF_VIRTUAL_IO sf_virtual_io =
 {