diff options
Diffstat (limited to 'irmp/irmp.c')
-rw-r--r-- | irmp/irmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irmp/irmp.c b/irmp/irmp.c index 25f8def..f2e7f5a 100644 --- a/irmp/irmp.c +++ b/irmp/irmp.c @@ -5870,7 +5870,7 @@ next_tick (void) { if (irmp_data.protocol != expected_protocol || irmp_data.address != expected_address || - irmp_data.command != expected_command) + (int)irmp_data.command != expected_command) { printf ("\nerror 7: expected values differ: p=%2d (%s), a=0x%04x, c=0x%04x\n", expected_protocol, irmp_protocol_names[expected_protocol], expected_address, expected_command); |