mirror of
git://git.code.sf.net/p/zsh/code
synced 2026-01-02 08:21:09 +01:00
Silenced a compiler warning about a variable that might be used
unassigned.
This commit is contained in:
parent
d5adfc3f11
commit
ea0a5b2662
1 changed files with 1 additions and 1 deletions
|
|
@ -3283,7 +3283,7 @@ mod_export LinkList bufstack;
|
|||
int
|
||||
bin_print(char *name, char **args, Options ops, int func)
|
||||
{
|
||||
int flen, width, prec, type, argc, n, narg, curlen;
|
||||
int flen, width, prec, type, argc, n, narg, curlen = 0;
|
||||
int nnl = 0, fmttrunc = 0, ret = 0, maxarg = 0;
|
||||
int flags[5], *len;
|
||||
char *start, *endptr, *c, *d, *flag, *buf, spec[13], *fmt = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue