changeset 39:281b080e8c44

More cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 29 Sep 2012 20:47:08 +0300
parents 8b04b0b51edc
children a239b7d4e13b
files mod2wav.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mod2wav.c	Sat Sep 29 20:47:02 2012 +0300
+++ b/mod2wav.c	Sat Sep 29 20:47:08 2012 +0300
@@ -280,14 +280,16 @@
 
     // Open mixer
     d = jvmInit(optOutFormat, optOutChannels, optOutFreq, JMIX_AUTO);
-    if (!d) {
+    if (!d)
+    {
         fprintf(stderr, "jvmInit() returned NULL\n");
         return 4;
     }
 
     sampSize = jvmGetSampleSize(d);
     mb = dmMalloc(bufLen * sampSize);
-    if (!mb) {
+    if (!mb)
+    {
         fprintf(stderr, "Could not allocate mixing buffer\n");
         return 5;
     }