From 7bd73c7fd4a96e5e22ba48397de5ccde0fff09ea Mon Sep 17 00:00:00 2001 From: rsc Date: Sun, 25 Jun 2006 23:52:32 +0000 Subject: [PATCH] silence warning --- src/lib9/fmt/dofmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib9/fmt/dofmt.c b/src/lib9/fmt/dofmt.c index e4e32bf4..214b71db 100644 --- a/src/lib9/fmt/dofmt.c +++ b/src/lib9/fmt/dofmt.c @@ -246,13 +246,13 @@ int fmtstrcpy(Fmt *f, char *s) { int i, j; - Rune r; if(!s) return __fmtcpy(f, "", 5, 5); /* if precision is specified, make sure we don't wander off the end */ if(f->flags & FmtPrec){ #ifdef PLAN9PORT + Rune r; i = 0; for(j=0; jprec && s[i]; j++) i += chartorune(&r, s+i);