From 2892231c6cb014f5731d4d2d5d5650b137119e6d Mon Sep 17 00:00:00 2001 From: Gowtham Anandha Babu Date: Wed, 15 Oct 2014 19:38:20 +0530 Subject: [PATCH] tools/hciattach: Fix syntax error This error may not be shown during normal compilation, because of ifdef. --- tools/hciattach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hciattach.c b/tools/hciattach.c index d8ef7e72c..2ace6f50d 100644 --- a/tools/hciattach.c +++ b/tools/hciattach.c @@ -128,7 +128,7 @@ int uart_speed(int s) return B3500000; #endif #ifdef B3710000 - case 3710000 + case 3710000: return B3710000; #endif #ifdef B4000000 -- 2.47.3