From 54e4ac2d6a91a862c774b0001870415ac424f839 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Wed, 9 Nov 2011 15:55:12 +0200 Subject: [PATCH] btmgmt: Fix missing : in switch statement --- mgmt/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mgmt/main.c b/mgmt/main.c index 500827c25..6c1d015cf 100644 --- a/mgmt/main.c +++ b/mgmt/main.c @@ -339,7 +339,7 @@ static void type2str(uint8_t type, char *str, size_t len) case MGMT_ADDR_BREDR: strncpy(str, "BR/EDR", len); break; - case MGMT_ADDR_LE_PUBLIC + case MGMT_ADDR_LE_PUBLIC: strncpy(str, "LE Public", len); break; case MGMT_ADDR_LE_RANDOM: -- 2.47.3