aboutsummaryrefslogtreecommitdiff
path: root/spectrogram.c
diff options
context:
space:
mode:
Diffstat (limited to 'spectrogram.c')
-rw-r--r--spectrogram.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/spectrogram.c b/spectrogram.c
index 6894a27..27d16e5 100644
--- a/spectrogram.c
+++ b/spectrogram.c
@@ -502,8 +502,10 @@ main(int argc, char **argv)
XMapWindow(dsp, container);
fft = init_fft(round);
- left = init_panel(dsp, container, 0, 0, round / 2, height, RTL);
- right = init_panel(dsp, container, round / 2 + HGAP, 0, round / 2, height, LTR);
+ left = init_panel(dsp, container,
+ 0, 0, round / 2, height, RTL);
+ right = init_panel(dsp, container,
+ round / 2 + HGAP, 0, round / 2, height, LTR);
free(sp_pal);
free(sh_pal);