diff options
author | Collin Funk <collin.funk1@gmail.com> | 2024-01-28 19:33:45 -0800 |
---|---|---|
committer | Patrick <tingping@tingping.se> | 2024-01-29 09:06:29 -0600 |
commit | 180ce9f4fde4f87150b69e0cf40873226dbb9455 (patch) | |
tree | ab06067c073e03d3d34d8e39674b9c647375894f /src/common/dbus | |
parent | 0c4878554323e6cd9a60b3dd5b19ffccb40dfb63 (diff) |
Change various types to the correct signedness to avoid warnings.
Also cast the check of "inet_addr" to guint32. The POSIX declaration of this function returns in_addr_t which is the same as uint32_t. Windows does not define this type and instead uses unsigned long.
Diffstat (limited to 'src/common/dbus')
-rw-r--r-- | src/common/dbus/dbus-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/dbus/dbus-client.c b/src/common/dbus/dbus-client.c index 8b40dd24..e70a49a9 100644 --- a/src/common/dbus/dbus-client.c +++ b/src/common/dbus/dbus-client.c @@ -67,7 +67,7 @@ hexchat_remote (void) gboolean hexchat_running; GError *error = NULL; char *command = NULL; - int i; + guint i; /* if there is nothing to do, return now. */ if (!arg_existing || !(arg_url || arg_urls || arg_command)) { |