# HG changeset patch # User Matti Hamalainen # Date 1348940828 -10800 # Node ID 281b080e8c4476561ef5dd5df672b5d1f41fb2b0 # Parent 8b04b0b51edc4f8144cee890423a1f2c7dfe2e24 More cosmetics. diff -r 8b04b0b51edc -r 281b080e8c44 mod2wav.c --- 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; }