mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-21 00:10:22 +01:00
Fix warning: "pointer targets in passing argument 5 of 'byteswap_body_helper' differ in signedness [-Wpointer-sign]".
Bug: https://bugs.freedesktop.org/attachment.cgi?id=93069 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
parent
8dd04cb4b2
commit
048564bc14
1 changed files with 1 additions and 1 deletions
|
|
@ -239,7 +239,7 @@ _dbus_marshal_byteswap (const DBusString *signature,
|
|||
|
||||
byteswap_body_helper (&reader, TRUE,
|
||||
old_byte_order, new_byte_order,
|
||||
_dbus_string_get_data_len (value_str, value_pos, 0),
|
||||
(unsigned char *) _dbus_string_get_data_len (value_str, value_pos, 0),
|
||||
NULL);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue