diff options
author | Michael Bien <[email protected]> | 2009-12-02 14:49:41 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-12-02 14:49:41 +0100 |
commit | 72203a5d1f8896463ded10d1b21ca116621d1900 (patch) | |
tree | 93472cac4c61381ea9cdc48bbe97a59b2cd6f64b /src/com/mbien/opencl/CLDevice.java | |
parent | 7c7f5070dcbcc37afe36a4744161157cac49997c (diff) |
fixed gcc setup on mac.
updated native taglet toc url.
fixed small bug in cl char[] -> String conversion.
Diffstat (limited to 'src/com/mbien/opencl/CLDevice.java')
-rw-r--r-- | src/com/mbien/opencl/CLDevice.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/mbien/opencl/CLDevice.java b/src/com/mbien/opencl/CLDevice.java index 78f0f7bf..c6a632aa 100644 --- a/src/com/mbien/opencl/CLDevice.java +++ b/src/com/mbien/opencl/CLDevice.java @@ -338,7 +338,7 @@ public final class CLDevice { checkForError(ret, "can not receive device info string"); - return new String(bb.array(), 0, (int)longBuffer[0]); + return CLUtils.clString2JavaString(bb.array(), (int)longBuffer[0]); } |