From e0d6853e6b5db5bbc591c7f69829f08c7181641a Mon Sep 17 00:00:00 2001 From: paladin-t Date: Wed, 2 Mar 2016 14:48:33 +0800 Subject: [PATCH] *improved code. --- core/my_basic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/my_basic.c b/core/my_basic.c index 191a9f4..6fa70c7 100755 --- a/core/my_basic.c +++ b/core/my_basic.c @@ -531,7 +531,7 @@ typedef struct _import_info_t { } _import_info_t; #endif /* MB_ENABLE_SOURCE_TRACE */ -typedef union _raw_u { char c; int_t i; real_t r; void* p; mb_val_bytes_t b; } _raw_u; +typedef union _raw_u { mb_data_e e; char c; int_t i; real_t r; void* p; mb_val_bytes_t b; } _raw_u; typedef unsigned char _raw_t[sizeof(_raw_u)];