comparison minijss/jssplr.c @ 775:4ff7d7f6f4d1

Silence some warnings.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 23 May 2013 23:47:21 +0300
parents c430112449a7
children 9acebca96dcc
comparison
equal deleted inserted replaced
774:09a63eb47e0f 775:4ff7d7f6f4d1
1390 * and jmpProcessEffects() methods for processing the module playing. 1390 * and jmpProcessEffects() methods for processing the module playing.
1391 */ 1391 */
1392 void jmpExec(void *pDEV, void *pMP) 1392 void jmpExec(void *pDEV, void *pMP)
1393 { 1393 {
1394 JSSPlayer *mp; 1394 JSSPlayer *mp;
1395 JSSMixer *dev;
1396 int channel; 1395 int channel;
1397 1396
1398 // Check some things via assert() 1397 // Check some things via assert()
1399 mp = (JSSPlayer *) pMP; 1398 mp = (JSSPlayer *) pMP;
1400 JSS_LOCK(mp); 1399 JSS_LOCK(mp);
1401 1400
1402 dev = (JSSMixer *) pDEV; 1401 (void) pDEV;
1402 // JSSMixer *dev = (JSSMixer *) pDEV;
1403 1403
1404 // Check if we are playing 1404 // Check if we are playing
1405 if (!mp->isPlaying) 1405 if (!mp->isPlaying)
1406 goto out; 1406 goto out;
1407 1407