[gnome-settings-daemon/rhel/account-and-subman-plugins: 19/23] subman: Fix some build warnings




commit 0b9576852287a4a3133da9c6cae04407afacc0f2
Author: Ray Strode <rstrode redhat com>
Date:   Sun Jan 24 11:26:40 2021 -0500

    subman: Fix some build warnings

 plugins/subman/gsd-subscription-manager.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/plugins/subman/gsd-subscription-manager.c b/plugins/subman/gsd-subscription-manager.c
index 46f8d35c..1f9ca447 100644
--- a/plugins/subman/gsd-subscription-manager.c
+++ b/plugins/subman/gsd-subscription-manager.c
@@ -588,8 +588,8 @@ _client_register_with_keys (GsdSubscriptionManager *manager,
 
                g_set_error (error, G_IO_ERROR, rc,
                             "%.*s",
-                            g_bytes_get_size (stderr_buf),
-                            g_bytes_get_data (stderr_buf, NULL));
+                            (int) g_bytes_get_size (stderr_buf),
+                            (char *) g_bytes_get_data (stderr_buf, NULL));
        }
 
        /* FIXME: also do on error? */
@@ -655,8 +655,8 @@ _client_register (GsdSubscriptionManager *manager,
 
                g_set_error (error, G_IO_ERROR, rc,
                             "%.*s",
-                            g_bytes_get_size (stderr_buf),
-                            g_bytes_get_data (stderr_buf, NULL));
+                            (int) g_bytes_get_size (stderr_buf),
+                            (char *) g_bytes_get_data (stderr_buf, NULL));
        }
 
        /* FIXME: also do on error? */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]