Browse Source

Merge pull request #167 from luke-jr/bugfix_missing_stmt

Bugfix: Missing "break" no-op in default case
nfactor-troky
Con Kolivas 13 years ago
parent
commit
a5b05d9c55
  1. 1
      driver-opencl.c

1
driver-opencl.c

@ -1226,6 +1226,7 @@ static bool opencl_thread_prepare(struct thr_info *thr) @@ -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);

Loading…
Cancel
Save