| commit | 7bd73c7fd4a96e5e22ba48397de5ccde0fff09ea | [log] [tgz] |
|---|---|---|
| author | rsc <devnull@localhost> | Sun Jun 25 23:52:32 2006 +0000 |
| committer | rsc <devnull@localhost> | Sun Jun 25 23:52:32 2006 +0000 |
| tree | 5088594d813d5274e5362cea0927b2d84fb74f9d | |
| parent | ce35b341b10b495da424ab54c000ef87635854ac [diff] |
silence warning
diff --git a/src/lib9/fmt/dofmt.c b/src/lib9/fmt/dofmt.c index e4e32bf4..214b71d 100644 --- a/src/lib9/fmt/dofmt.c +++ b/src/lib9/fmt/dofmt.c
@@ -246,13 +246,13 @@ fmtstrcpy(Fmt *f, char *s) { int i, j; - Rune r; if(!s) return __fmtcpy(f, "<nil>", 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; j<f->prec && s[i]; j++) i += chartorune(&r, s+i);