cups: Silence a compiler warning

Bitfields should be unsigned int.
This commit is contained in:
Matthias Clasen 2023-05-18 14:39:22 -04:00
parent c2a8620660
commit 5f39820729

View File

@ -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;