From d309ddd289181e1b071e4aceb921ab34301faa4c Mon Sep 17 00:00:00 2001 From: Colm Date: Wed, 31 Jan 2018 22:26:44 +0000 Subject: [PATCH] Accidentally removed a `;` --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 0e1fb0e3..d2c5e78f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -103,7 +103,7 @@ fn setup(args: &[String]) -> Setup { .optflag("", "enable-volume-normalization", "Play all tracks at the same volume") .optopt("", "normalization-pre-gain", "Pre-gain (dB) applied by volume normalization", "PREGAIN") .optopt("", "initial-volume", "Initial volume in %, once connected (must be from 0 to 100)", "VOLUME") - .optopt("z", "zeroconf-port", "The port the internal server advertised over zeroconf uses.", "ZEROCONF_PORT") + .optopt("z", "zeroconf-port", "The port the internal server advertised over zeroconf uses.", "ZEROCONF_PORT"); let matches = match opts.parse(&args[1..]) { Ok(m) => m,