mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
bit fields should be explicitly unsigned (unless space is allocated
for sign bit)
This commit is contained in:
parent
804100b431
commit
ca5eab2ebc
1 changed files with 2 additions and 2 deletions
|
|
@ -71,8 +71,8 @@ struct sockbuf {
|
|||
#define sb_options sb_opts.lbo_options
|
||||
#define sb_debug sb_opts.lbo_debug
|
||||
ber_socket_t sb_fd;
|
||||
int sb_trans_needs_read:1;
|
||||
int sb_trans_needs_write:1;
|
||||
unsigned int sb_trans_needs_read:1;
|
||||
unsigned int sb_trans_needs_write:1;
|
||||
};
|
||||
|
||||
#define SOCKBUF_VALID( sb ) ( (sb)->sb_valid == LBER_VALID_SOCKBUF )
|
||||
|
|
|
|||
Loading…
Reference in a new issue