2011-11-09 13:14:40

by Slawomir Bochenski

[permalink] [raw]
Subject: [PATCH] Add missing colon after case statement

---
mgmt/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mgmt/main.c b/mgmt/main.c
index 500827c..6c1d015 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:
--
1.7.4.1



2011-11-09 13:56:34

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] Add missing colon after case statement

Hi Slawek,

On Wed, Nov 09, 2011, Slawomir Bochenski wrote:
> ---
> mgmt/main.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)

Thanks, but I already pushed a patch for this.

Johan