From: Zhigang Gong Date: Thu, 17 Apr 2014 05:11:50 +0000 (+0800) Subject: Runtime: increase the build log buffer size to 1000. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0cbdb12b1d57389988ae157638a083a96eeb8b0;p=contrib%2Fbeignet.git Runtime: increase the build log buffer size to 1000. 200 is too small sometimes. Signed-off-by: Zhigang Gong Reviewed-by: He Junyan --- 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);