mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-24 12:41:16 +00:00
cups: Silence a compiler warning
Bitfields should be unsigned int.
This commit is contained in:
parent
c2a8620660
commit
5f39820729
@ -96,9 +96,9 @@ struct _GtkCupsRequest
|
||||
char *password;
|
||||
char *username;
|
||||
|
||||
int own_http : 1;
|
||||
int need_password : 1;
|
||||
int need_auth_info : 1;
|
||||
unsigned int own_http : 1;
|
||||
unsigned int need_password : 1;
|
||||
unsigned int need_auth_info : 1;
|
||||
char **auth_info_required;
|
||||
char **auth_info;
|
||||
GtkCupsPasswordState password_state;
|
||||
|
Loading…
Reference in New Issue
Block a user