From 0cadb4301d18724e7513d7489cb5bebd262c82f1 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 11 Sep 2009 17:03:06 -0400 Subject: convert to 4-byte UTF-8 and 32-bit Rune http://codereview.appspot.com/116075 --- include/fmt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/fmt.h') diff --git a/include/fmt.h b/include/fmt.h index 480ccad5..795e83e8 100644 --- a/include/fmt.h +++ b/include/fmt.h @@ -30,7 +30,7 @@ struct Fmt{ void *farg; /* to make flush a closure */ int nfmt; /* num chars formatted so far */ va_list args; /* args passed to dofmt */ - int r; /* % format Rune */ + Rune r; /* % format Rune */ int width; int prec; unsigned long flags; -- cgit v1.2.3