From a391a45f9fe4ec02363756c33c791e517d7233b2 Mon Sep 17 00:00:00 2001 From: Gowtham Anandha Babu Date: Mon, 8 Dec 2014 11:09:45 +0530 Subject: [PATCH] tools/hciattach: Fix syntax error This error may not be shown during normal compilation, because of ifdef. Fixed the same. Change-Id: I7cafed0387c43caecf6bbb866283c13954a1bac8 --- tools/hciattach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hciattach.c b/tools/hciattach.c index 424748b..1f7a442 100644 --- a/tools/hciattach.c +++ b/tools/hciattach.c @@ -144,7 +144,7 @@ int uart_speed(int s) return B3500000; #endif #ifdef B3710000 - case 3710000 + case 3710000: return B3710000; #endif #ifdef B4000000 -- 2.7.4