Mercurial > hg > xemacs-beta
diff src/doprnt.c @ 16:0293115a14e9 r19-15b91
Import from CVS: tag r19-15b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:20 +0200 |
parents | 9ee227acff29 |
children | ee648375d8d6 |
line wrap: on
line diff
--- a/src/doprnt.c Mon Aug 13 08:48:43 2007 +0200 +++ b/src/doprnt.c Mon Aug 13 08:49:20 2007 +0200 @@ -46,13 +46,13 @@ is 2, etc. This is to handle %##$x-type specs. */ int minwidth; int precision; - int minus_flag:1; - int plus_flag:1; - int space_flag:1; - int number_flag:1; - int zero_flag:1; - int h_flag:1; - int l_flag:1; + unsigned int minus_flag:1; + unsigned int plus_flag:1; + unsigned int space_flag:1; + unsigned int number_flag:1; + unsigned int zero_flag:1; + unsigned int h_flag:1; + unsigned int l_flag:1; char converter; /* converter character or 0 for dummy marker indicating literal text at the end of the specification */