diff src/timidity/xmms-timidity.c @ 1978:fa9f85cebade

s/vfs_/aud_vfs_/g
author William Pitcock <nenolod@atheme.org>
date Sun, 07 Oct 2007 00:25:33 -0500
parents 5fa26178eaef
children b7bb2753677c
line wrap: on
line diff
--- a/src/timidity/xmms-timidity.c	Sun Oct 07 00:23:19 2007 -0500
+++ b/src/timidity/xmms-timidity.c	Sun Oct 07 00:25:33 2007 -0500
@@ -223,7 +223,7 @@
 {
 	gchar magic_bytes[4];
 
-	vfs_fread( magic_bytes , 1 , 4 , fp );
+	aud_vfs_fread( magic_bytes , 1 , 4 , fp );
 
 	if ( !memcmp( magic_bytes , "MThd" , 4 ) )
 		return TRUE;
@@ -232,8 +232,8 @@
 	{
 	/* skip the four bytes after RIFF,
 	   then read the next four */
-	vfs_fseek( fp , 4 , SEEK_CUR );
-	vfs_fread( magic_bytes , 1 , 4 , fp );
+	aud_vfs_fseek( fp , 4 , SEEK_CUR );
+	aud_vfs_fread( magic_bytes , 1 , 4 , fp );
 	if ( !memcmp( magic_bytes , "RMID" , 4 ) )
 		return TRUE;
 	}