diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2005-01-21 11:16:34 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2005-01-21 11:16:34 +0000 |
commit | 2fb65d215f6691e3689eeae707bfb40f5c38dc0e (patch) | |
tree | 923d7d4bfeb27408f55561be032c4231f2d9759e /Src/Modules | |
parent | e63e45ae62028032bad3c1ba4b74a5b283d74597 (diff) | |
download | zsh-2fb65d215f6691e3689eeae707bfb40f5c38dc0e.tar.gz zsh-2fb65d215f6691e3689eeae707bfb40f5c38dc0e.tar.xz zsh-2fb65d215f6691e3689eeae707bfb40f5c38dc0e.zip |
Fixed compiler warning about a missing initializer.
Diffstat (limited to 'Src/Modules')
-rw-r--r-- | Src/Modules/parameter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Modules/parameter.c b/Src/Modules/parameter.c index c6a6eca71..e4dab1e64 100644 --- a/Src/Modules/parameter.c +++ b/Src/Modules/parameter.c @@ -1873,8 +1873,8 @@ static struct pardef partab[] = { getpmbuiltin, scanpmbuiltins, NULL, NULL, NULL }, { "dis_builtins", PM_READONLY, - getpmdisbuiltin, scanpmdisbuiltins, - NULL, NULL, }, + getpmdisbuiltin, scanpmdisbuiltins, NULL, + NULL, NULL }, { "reswords", PM_ARRAY|PM_SPECIAL|PM_READONLY, NULL, NULL, NULL, &reswords_gsu, NULL }, |