From 752a5fe751dbc53aebe3707dfdf41001fd3fcd1d Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sat, 3 Sep 2011 10:09:44 +0200 Subject: [PATCH] Fix wrong error condition message --- babel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babel.cc b/babel.cc index 7cc66ad..1a5dd1d 100644 --- a/babel.cc +++ b/babel.cc @@ -160,7 +160,7 @@ int main(int argc, char **argv) { /* copy memory up */ error = clEnqueueWriteBuffer(queue, enc_d, false, 0, enc_size, enc_h, 0, NULL, NULL); - check_ocl_error(error, "getting results"); + check_ocl_error(error, "loading encoded data"); /* load and build program */ char *prog_source = read_file("babel.cl"); -- 2.32.0.93.g670b81a890