mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
Change var_entry_t struct to be ANSI C compliant (Wastes a few hundred bytes)
darcs-hash:20060410160109-ac50b-fa8b097722f06aee5fb09095e89f6b39ff90d44b.gz
This commit is contained in:
parent
bd9c843fd1
commit
53295d38b7
1 changed files with 1 additions and 1 deletions
2
env.c
2
env.c
|
@ -104,7 +104,7 @@ typedef struct env_node
|
||||||
typedef struct var_entry
|
typedef struct var_entry
|
||||||
{
|
{
|
||||||
int export; /**< Whether the variable should be exported */
|
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;
|
var_entry_t;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue