diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-10-19 14:35:08 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-10-19 14:35:08 -0400 |
commit | 3ebde173c2976a6d83f94bd4a1b5738fa52dd685 (patch) | |
tree | 3103c59543b4e0f4e91ca81659ca082df64378ba /parser.c | |
parent | f98d4cfb2cff6df80ecd846f11781568d348fc19 (diff) |
fix return-value warnings
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2335,7 +2335,8 @@ static int Go_delay_test58(gchar** response, int channel, char *parameter,char * return status; } globals.ChannelState[channel].test_delay_mode=on_off; - return Set_Mux(channel); + Set_Mux(channel); + return OK; break; default: |