From 53295d38b755dc87c8b882b9d9b3c3c072d3749a Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 11 Apr 2006 02:01:09 +1000 Subject: [PATCH] Change var_entry_t struct to be ANSI C compliant (Wastes a few hundred bytes) darcs-hash:20060410160109-ac50b-fa8b097722f06aee5fb09095e89f6b39ff90d44b.gz --- env.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.c b/env.c index e7b270324..7466fa890 100644 --- a/env.c +++ b/env.c @@ -104,7 +104,7 @@ typedef struct env_node typedef struct var_entry { int export; /**< Whether the variable should be exported */ - wchar_t val[0]; /**< The value of the variable */ + wchar_t val[1]; /**< The value of the variable */ } var_entry_t;