hcidump: Fix missing break

This commit is contained in:
Andrei Emeltchenko 2014-01-09 18:11:02 +02:00 committed by Johan Hedberg
parent 16c66d5585
commit 68f9701922

View File

@ -1180,12 +1180,16 @@ response:
switch (status) {
case 0x00:
printf("(POWER_ON)\n");
break;
case 0x01:
printf("(POWER_OFF)\n");
break;
case 0x02:
printf("(UNPLUGGED)\n");
break;
default:
printf("(UNKOWN)\n");
break;
}
break;
case AVRCP_EVENT_PLAYER_APPLICATION_SETTING_CHANGED: