changeset 2298:cfe45e6861f7

branch merge
author Tomasz Mon <desowin@gmail.com>
date Sat, 12 Jan 2008 12:15:43 +0100
parents 912ab17a4bcc (current diff) 4816e35abc02 (diff)
children 1bc5ccdc47d5
files
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/wav/wav-sndfile.c	Sat Jan 12 12:14:58 2008 +0100
+++ b/src/wav/wav-sndfile.c	Sat Jan 12 12:15:43 2008 +0100
@@ -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 =
 {