From 5f39820729a9a1be7d0b6b34d5660284d113f4a9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 18 May 2023 14:39:22 -0400 Subject: [PATCH] cups: Silence a compiler warning Bitfields should be unsigned int. --- modules/printbackends/gtkcupsutils.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.30.2