From 13cb68651497f1fb4f56134239b5c08c61686a9d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 12 Jun 2004 22:13:38 +0000 Subject: [PATCH] hcidump: Fix protocol bits --- tools/parser/hidp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/parser/hidp.c b/tools/parser/hidp.c index 1dcf43e17..feeb33fc9 100644 --- a/tools/parser/hidp.c +++ b/tools/parser/hidp.c @@ -125,9 +125,9 @@ static char *protocol2str(uint8_t head) { switch (head & 0x01) { case 0x00: - return "Report protocol"; - case 0x01: return "Boot protocol"; + case 0x01: + return "Report protocol"; default: return "Reserved"; } -- 2.47.3