diff options
author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2014-05-29 20:17:30 +0100 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2014-05-29 20:17:30 +0100 |
commit | 1cc3424cbe04ee4c2fab3eae75caa935054bb1c1 (patch) | |
tree | ae7e8b6a2209794e282cf9495aa818973321dc43 /Src/params.c | |
parent | e65a221439449c9eac9fdab2d0ec552cce27ca97 (diff) | |
download | zsh-1cc3424cbe04ee4c2fab3eae75caa935054bb1c1.tar.gz zsh-1cc3424cbe04ee4c2fab3eae75caa935054bb1c1.tar.xz zsh-1cc3424cbe04ee4c2fab3eae75caa935054bb1c1.zip |
unposted: use DIGBUFSIZE for pipestatus numeric buffer
Diffstat (limited to 'Src/params.c')
-rw-r--r-- | Src/params.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/params.c b/Src/params.c index 59d503c58..790102923 100644 --- a/Src/params.c +++ b/Src/params.c @@ -4247,7 +4247,7 @@ static char ** pipestatgetfn(UNUSED(Param pm)) { char **x = (char **) zhalloc((numpipestats + 1) * sizeof(char *)); - char buf[20], **p; + char buf[DIGBUFSIZE], **p; int *q, i; for (p = x, q = pipestats, i = numpipestats; i--; p++, q++) { |