From 566d673f83170e9f5a49d8f072c8e5e0a1c8d6b1 Mon Sep 17 00:00:00 2001 From: vostok4 Date: Wed, 9 Apr 2014 11:21:32 +0200 Subject: Fix comments for C89 compatibility --- redis_array.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'redis_array.c') diff --git a/redis_array.c b/redis_array.c index e9a56e7a..05f0c2e4 100644 --- a/redis_array.c +++ b/redis_array.c @@ -85,7 +85,7 @@ zend_function_entry redis_array_functions[] = { static void redis_array_free(RedisArray *ra) { int i; - // Redis objects + /* Redis objects */ for(i=0;icount;i++) { zval_dtor(ra->redis[i]); efree(ra->redis[i]); @@ -110,7 +110,7 @@ static void redis_array_free(RedisArray *ra) { zval_dtor(ra->z_pure_cmds); efree(ra->z_pure_cmds); - // Free structure itself + /* Free structure itself */ efree(ra); } -- cgit v1.2.3