From 3eb08e8fd78bbba73b10f505799af0b5a9d011e3 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Sun, 29 Mar 2009 00:12:58 +0100 Subject: [PATCH] Fixed typo in the size of element type of unicode arrays. --- src/c/array.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/array.d b/src/c/array.d index 49386b7e7..dc50a39d3 100644 --- a/src/c/array.d +++ b/src/c/array.d @@ -41,7 +41,7 @@ static const cl_index ecl_aet_size[] = { sizeof(ecl_int64_t), #endif #ifdef ECL_UNICODE - sizeof(cl_object), /* aet_ch */ + sizeof(ecl_character), /* aet_ch */ #endif sizeof(unsigned char) /* aet_bc */ };