From: Matthias Clasen Date: Thu, 18 May 2023 18:39:22 +0000 (-0400) Subject: cups: Silence a compiler warning X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~238^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5f39820729a9a1be7d0b6b34d5660284d113f4a9;p=gtk4.git cups: Silence a compiler warning Bitfields should be unsigned int. --- diff --git a/modules/printbackends/gtkcupsutils.h b/modules/printbackends/gtkcupsutils.h index d14f9398d4..7859427ea0 100644 --- a/modules/printbackends/gtkcupsutils.h +++ b/modules/printbackends/gtkcupsutils.h @@ -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;