From 7987476db357af3c0b6670d8ddfcbc1fbfe4b918 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 21 Apr 2012 02:47:28 -0400 Subject: [PATCH] Bugfix: Missing "break" no-op in default case --- driver-opencl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/driver-opencl.c b/driver-opencl.c index e4137d11..b36c9c71 100644 --- a/driver-opencl.c +++ b/driver-opencl.c @@ -1226,6 +1226,7 @@ static bool opencl_thread_prepare(struct thr_info *thr) case KL_POCLBM: cgpu->kname = "poclbm"; default: + break; } } applog(LOG_INFO, "initCl() finished. Found %s", name);