# HG changeset patch # User Tomasz Mon # Date 1200136543 -3600 # Node ID cfe45e6861f75a36982945358ed74d04c445fc65 # Parent 912ab17a4bcc750266919002c3d3a2d8315943e0# Parent 4816e35abc0215160ed749275b23b14afbf822a1 branch merge diff -r 912ab17a4bcc -r cfe45e6861f7 src/wav/wav-sndfile.c --- 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 = {