diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2006-03-07 21:30:36 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2006-03-07 21:30:36 +0000 |
commit | 4cb83571c45670eb8111801499281ea416b5074d (patch) | |
tree | e46e881ad2f0ace5a02761e7cdb4f808df12d9f5 /Src/Zle/compresult.c | |
parent | e17fc5079394ce0c30dc0573676983e6f4a0a5bc (diff) | |
download | zsh-4cb83571c45670eb8111801499281ea416b5074d.tar.gz zsh-4cb83571c45670eb8111801499281ea416b5074d.tar.xz zsh-4cb83571c45670eb8111801499281ea416b5074d.zip |
Changed some structures to avoid gcc's type-punned warnings.
Diffstat (limited to 'Src/Zle/compresult.c')
-rw-r--r-- | Src/Zle/compresult.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c index 4c31dab1b..2aa382cb5 100644 --- a/Src/Zle/compresult.c +++ b/Src/Zle/compresult.c @@ -1062,7 +1062,7 @@ do_single(Cmatch m) n = p + 1; if ((pm = (Param) paramtab->getnode(paramtab, n)) && - PM_TYPE(pm->flags) != PM_SCALAR) + PM_TYPE(pm->node.flags) != PM_SCALAR) tryit = 0; } if (tryit) { |