diff options
| author | Andrey Borzenkov <bor@users.sourceforge.net> | 2009-01-05 11:14:53 +0000 |
|---|---|---|
| committer | Andrey Borzenkov <bor@users.sourceforge.net> | 2009-01-05 11:14:53 +0000 |
| commit | ead23b1898365ad86d90bf67a7be58278cc7ac71 (patch) | |
| tree | dcc9f866fa10c75bd19dd313878937695bec6c74 /Src | |
| parent | Richard Hartmann: 26229: note zstat link following behaviour (diff) | |
| download | zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.tar zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.tar.gz zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.tar.bz2 zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.tar.lz zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.tar.xz zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.tar.zst zsh-ead23b1898365ad86d90bf67a7be58278cc7ac71.zip | |
26247: fix compilation with -Werror=format-security
Diffstat (limited to 'Src')
| -rw-r--r-- | Src/Zle/zle_tricky.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index dbb01f483..f9ae3aa1b 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -2286,7 +2286,7 @@ printfmt(char *fmt, int n, int dopr, int doesc) case 'n': sprintf(nc, "%d", n); if (dopr) - fprintf(shout, nc); + fputs(nc, shout); cc += MB_METASTRWIDTH(nc); break; case 'B': |
