From 90f34a7139375432a95fb36fb33b70896838fc31 Mon Sep 17 00:00:00 2001 From: Till Zimmermann Date: Thu, 9 May 2019 12:37:09 +0200 Subject: [PATCH] Fixed Typos --- shairport.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shairport.c b/shairport.c index 21d47d8e..bb790c6f 100644 --- a/shairport.c +++ b/shairport.c @@ -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 -- 2.47.2