]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Fixed Typos 848/head
authorTill Zimmermann <tillz@tillz.net>
Thu, 9 May 2019 10:37:09 +0000 (12:37 +0200)
committerTill Zimmermann <tillz@tillz.net>
Thu, 9 May 2019 10:37:09 +0000 (12:37 +0200)
shairport.c

index 21d47d8edb90b6a13eae32a1b4f086834bdc3dbb..bb790c6f0b4d41bd7bbc221b7109e3abf15b661b 100644 (file)
@@ -1761,13 +1761,13 @@ int main(int argc, char **argv) {
   debug(1, "get-coverart is %d.", config.get_coverart);
 #endif
 #ifdef CONFIG_MQTT
-  debug(1, "mqtt is %sabled.", (config.mqtt_enabled?"en":"dis"));
-  debug(1, "mqtt hostname is %s, port is %d.", config.mqtt_hostname. config.mqtt_port);
+  debug(1, "mqtt is %sabled.", config.mqtt_enabled ? "en" : "dis");
+  debug(1, "mqtt hostname is %s, port is %d.", config.mqtt_hostname, config.mqtt_port);
   debug(1, "mqtt topic is %s.", config.mqtt_topic);
-  debug(1, "mqtt will%s publish raw metadata.", (config.mqtt_publish_raw?"":" NOT"));
-  debug(1, "mqtt will%s publish parsed metadata.", (config.mqtt_publish_parsed?"":" NOT"));
-  debug(1, "mqtt will%s publish cover Art.", (config.mqtt_publish_cover?"":" NOT"));
-  debug(1, "mqtt remote control is %sabled .", (config.mqtt_enable_remote?"en":"dis"));
+  debug(1, "mqtt will%s publish raw metadata.", config.mqtt_publish_raw ? "" : " NOT");
+  debug(1, "mqtt will%s publish parsed metadata.", config.mqtt_publish_parsed ? "" : " NOT");
+  debug(1, "mqtt will%s publish cover Art.", config.mqtt_publish_cover ? "" : " NOT");
+  debug(1, "mqtt remote control is %sabled.", config.mqtt_enable_remote ? "en" : "dis");
 #endif
 
 #ifdef CONFIG_CONVOLUTION