changeset 775:4ff7d7f6f4d1

Silence some warnings.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 23 May 2013 23:47:21 +0300
parents 09a63eb47e0f
children 9acebca96dcc
files minijss/jssplr.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/minijss/jssplr.c	Fri May 10 12:38:07 2013 +0300
+++ b/minijss/jssplr.c	Thu May 23 23:47:21 2013 +0300
@@ -1392,14 +1392,14 @@
 void jmpExec(void *pDEV, void *pMP)
 {
     JSSPlayer *mp;
-    JSSMixer *dev;
     int channel;
 
     // Check some things via assert()
     mp = (JSSPlayer *) pMP;
     JSS_LOCK(mp);
 
-    dev = (JSSMixer *) pDEV;
+    (void) pDEV;
+//    JSSMixer *dev = (JSSMixer *) pDEV;
 
     // Check if we are playing
     if (!mp->isPlaying)