Bugfix: Missing "break" no-op in default case
diff --git a/driver-opencl.c b/driver-opencl.c
index e4137d1..b36c9c7 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);