From 0bc567d8c3cdd550181b053d673f890d51b8ede7 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 29 Jan 2013 15:44:11 -0500 Subject: [PATCH] lib: Remove duplicate GPU text in the OpenCL description --- lib/coproc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/coproc.cpp b/lib/coproc.cpp index 3b3f5e3536..7298294b4d 100644 --- a/lib/coproc.cpp +++ b/lib/coproc.cpp @@ -295,14 +295,14 @@ void OPENCL_DEVICE_PROP::description(char* buf, const char* type) { switch(is_used) { case COPROC_IGNORED: - sprintf(buf, "OpenCL: %s GPU %d (ignored by config): %s", type, device_num, s2); + sprintf(buf, "OpenCL: %s %d (ignored by config): %s", type, device_num, s2); break; case COPROC_USED: - sprintf(buf, "OpenCL: %s GPU %d: %s", type, device_num, s2); + sprintf(buf, "OpenCL: %s %d: %s", type, device_num, s2); break; case COPROC_UNUSED: default: - sprintf(buf, "OpenCL: %s GPU %d (not used): %s", type, device_num, s2); + sprintf(buf, "OpenCL: %s %d (not used): %s", type, device_num, s2); break; } }