changeset 2305:3bcad61594b4

Cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 08 Jul 2019 10:28:00 +0300
parents 9aa51ac4e502
children e798a41f27a5
files tools/ppl.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/ppl.c	Mon Jul 08 10:21:01 2019 +0300
+++ b/tools/ppl.c	Mon Jul 08 10:28:00 2019 +0300
@@ -533,8 +533,7 @@
 
 void dmMuteChannels(BOOL mute)
 {
-    int i;
-    for (i = 0; i < eng.mod->nchannels; i++)
+    for (int i = 0; i < eng.mod->nchannels; i++)
         jvmMute(eng.dev, i, mute);
 }