From f0cbdb12b1d57389988ae157638a083a96eeb8b0 Mon Sep 17 00:00:00 2001 From: Zhigang Gong Date: Thu, 17 Apr 2014 13:11:50 +0800 Subject: [PATCH] Runtime: increase the build log buffer size to 1000. 200 is too small sometimes. Signed-off-by: Zhigang Gong Reviewed-by: He Junyan --- src/cl_program.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cl_program.c b/src/cl_program.c index 10eecee..8ae3aa7 100644 --- a/src/cl_program.c +++ b/src/cl_program.c @@ -109,9 +109,9 @@ cl_program_new(cl_context ctx) p->ref_n = 1; p->magic = CL_MAGIC_PROGRAM_HEADER; p->ctx = ctx; - p->build_log = calloc(200, sizeof(char)); + p->build_log = calloc(1000, sizeof(char)); if (p->build_log) - p->build_log_max_sz = 200; + p->build_log_max_sz = 1000; /* The queue also belongs to its context */ cl_context_add_ref(ctx); -- 2.7.4