From ea0a5b26622c9f86b4b3b7d5ba73babce77c24b0 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 1 Aug 2005 22:20:36 +0000 Subject: Silenced a compiler warning about a variable that might be used unassigned. --- Src/builtin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/builtin.c b/Src/builtin.c index 443ebe903..b17b6d4aa 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -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; -- cgit 1.4.1