]> granicus.if.org Git - mutt/commitdiff
make bit types unsigned. From albert chin <china@thewrittenword.com>.
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 24 Jul 2000 07:48:53 +0000 (07:48 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 24 Jul 2000 07:48:53 +0000 (07:48 +0000)
browser.h

index 70b82d7ed72ff0f594df548d3099a722e54bb6aa..7ad9e56e8f8624c407deef95b609fe626605a54c 100644 (file)
--- a/browser.h
+++ b/browser.h
@@ -48,9 +48,9 @@ struct browser_state
 #ifdef USE_IMAP
   short imap_browse;
   char *folder;
-  int noselect : 1;
-  int marked : 1;
-  int unmarked : 1;
+  unsigned noselect : 1;
+  unsigned marked : 1;
+  unsigned unmarked : 1;
 #endif
 };