summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parser.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/parser.c b/parser.c
index ef1d43a..b566896 100644
--- a/parser.c
+++ b/parser.c
@@ -4191,6 +4191,8 @@ static int Go_cal_interval_101(gchar** response, int channel, char *parameter,ch
static int Go_broadcast_103(gchar** response, int channel, char *parameter,char *units,int command_type)
{
+#ifdef DEBUG_ON
+
gchar *broadcast_str = NULL;
switch (command_type) {
@@ -4214,4 +4216,9 @@ static int Go_broadcast_103(gchar** response, int channel, char *parameter,char
}
return ThisShouldntHappen;
+
+#else
+
+ return Unrecognized;
+#endif
}