From fe50c4aecb28248451751a6e0c60c60aeb1f4c7e Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 22 Jun 2010 21:08:29 -0400 Subject: [PATCH] Fix missing semicolon which broke tracing. --- src/wrapper/wrap_cl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper/wrap_cl.hpp b/src/wrapper/wrap_cl.hpp index e73fca96..ea0cbdaf 100644 --- a/src/wrapper/wrap_cl.hpp +++ b/src/wrapper/wrap_cl.hpp @@ -1036,7 +1036,7 @@ namespace pyopencl event *create_user_event(context &ctx) { cl_int status_code; - cl_event evt = clCreateUserEvent(ctx.data(), &status_code) + cl_event evt = clCreateUserEvent(ctx.data(), &status_code); PYOPENCL_PRINT_CALL_TRACE("clCreateUserEvent"); if (status_code != CL_SUCCESS) -- GitLab