[MPlayer-cvslog] r36490 - trunk/libaf/af_volume.c

reimar subversion at mplayerhq.hu
Sat Oct 26 11:36:21 CEST 2013


Author: reimar
Date: Sat Oct 26 11:36:21 2013
New Revision: 36490

Log:
Remove pointless cast.

Modified:
   trunk/libaf/af_volume.c

Modified: trunk/libaf/af_volume.c
==============================================================================
--- trunk/libaf/af_volume.c	Sat Oct 26 11:17:28 2013	(r36489)
+++ trunk/libaf/af_volume.c	Sat Oct 26 11:36:21 2013	(r36490)
@@ -142,7 +142,7 @@ static void uninit(struct af_instance_s*
 static af_data_t* play(struct af_instance_s* af, af_data_t* data)
 {
   af_data_t*    c   = data;			// Current working data
-  af_volume_t*  s   = (af_volume_t*)af->setup; 	// Setup for this instance
+  af_volume_t*  s   = af->setup;		// Setup for this instance
   int           ch  = 0;			// Channel counter
   register int	nch = c->nch;			// Number of channels
   register int  i   = 0;


More information about the MPlayer-cvslog mailing list