summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-01 21:48:04 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-01 21:48:04 +0200
commitce7743d3bc4cdd3586b7918948fcdc08d21e0ab0 (patch)
tree9c81db0b6cd017763ca1f3e2b901095aeb4dcd99
parent67f12c2a798b8e1113ab0fac6642a8c09fdd6142 (diff)
downloaddigitale-debutanten-ce7743d3bc4cdd3586b7918948fcdc08d21e0ab0.tar.gz
minor fix
-rw-r--r--rec.ck4
1 files changed, 2 insertions, 2 deletions
diff --git a/rec.ck b/rec.ck
index 5f55eca..da9e38e 100644
--- a/rec.ck
+++ b/rec.ck
@@ -15,8 +15,8 @@ WvOut2 out => blackhole;
"recording" => out.autoPrefix;
filename => out.wavFilename;
-dac.chan(0) => out.left();
-dac.chan(1) => out.right();
+dac.chan(0) => out.left;
+dac.chan(1) => out.right;
/* keep recording as long as shred is running */
null @=> out; /* BUG WORKAROUND: dereference "out" on shred exit */