Mercurial > hg > xemacs-beta
diff src/doprnt.c @ 74:54cc21c15cbb r20-0b32
Import from CVS: tag r20-0b32
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:04:33 +0200 |
parents | 131b0175ea99 |
children | 3d6bfa290dbd |
line wrap: on
line diff
--- a/src/doprnt.c Mon Aug 13 09:03:47 2007 +0200 +++ b/src/doprnt.c Mon Aug 13 09:04:33 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 */