summaryrefslogtreecommitdiff
path: root/trivmix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-08-20 19:13:57 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-08-20 19:13:57 +0200
commitd93226b3ad30e65a607a0ee47acd32de844d312c (patch)
tree3ffec1097bac6face6c40bd9c9964c4ea79f6faa /trivmix
parent70e600346fb5875defe14d578883c9838695d533 (diff)
downloadtrivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar.gz
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar.bz2
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.tar.xz
trivmix-d93226b3ad30e65a607a0ee47acd32de844d312c.zip
Allow synchronising with 0 files
Diffstat (limited to 'trivmix')
-rw-r--r--trivmix/Trivmix.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/trivmix/Trivmix.hs b/trivmix/Trivmix.hs
index fdd94b4..50caa1b 100644
--- a/trivmix/Trivmix.hs
+++ b/trivmix/Trivmix.hs
@@ -77,7 +77,7 @@ optionParser = Options
77 <> help "Execute a file once setup of jacks is done (use this to autoconnect)\nThe executable gets passed the input port (including client name) as its first argument and the output as its second." 77 <> help "Execute a file once setup of jacks is done (use this to autoconnect)\nThe executable gets passed the input port (including client name) as its first argument and the output as its second."
78 ) 78 )
79 ) 79 )
80 <*> some (strArgument ( metavar "FILE..." 80 <*> many (strArgument ( metavar "FILE..."
81 <> help "Files that contain levels to assume and synchronize\nFor deterministic behaviour use flock(2).\nThe format used in these files is either a signed float, using ‘.’ as a decimal point or a signed float postfixed with ‘dB’.\nCaveat: ‘-InfinitydB’ exists and works as expected (i.e.: it is equal to ‘0.0’)" 81 <> help "Files that contain levels to assume and synchronize\nFor deterministic behaviour use flock(2).\nThe format used in these files is either a signed float, using ‘.’ as a decimal point or a signed float postfixed with ‘dB’.\nCaveat: ‘-InfinitydB’ exists and works as expected (i.e.: it is equal to ‘0.0’)"
82 ) 82 )
83 ) 83 )