diff options
author | Chet Ramey <chet.ramey@case.edu> | 2011-12-07 09:14:01 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2011-12-07 09:14:01 -0500 |
commit | 3d4e09aa28852574763fe6e930f8d4ecfc94a34c (patch) | |
tree | 6417a1d1e214357a459c703ebd70312225f74a6f /alias.c | |
parent | d21bf2014042cece5241863762e374b72c9d1b97 (diff) | |
download | bash-3d4e09aa28852574763fe6e930f8d4ecfc94a34c.tar.gz |
commit bash-20071011 snapshot
Diffstat (limited to 'alias.c')
-rw-r--r-- | alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ HASH_TABLE *aliases = (HASH_TABLE *)NULL; void initialize_aliases () { - if (!aliases) + if (aliases == 0) aliases = hash_create (ALIAS_HASH_BUCKETS); } |