more changes from int xx:1 to unsigned int xx:1

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@861 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-11-23 22:57:59 +00:00 committed by cras
commit 1fd6f8faf6
10 changed files with 40 additions and 40 deletions

View file

@ -24,8 +24,8 @@ typedef struct {
char *proxy_address;
LISTEN_REC *listen;
IRC_SERVER_REC *server;
int pass_sent:1;
int connected:1;
unsigned int pass_sent:1;
unsigned int connected:1;
} CLIENT_REC;
extern GSList *proxy_listens;