mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-02 21:30:13 +01:00
Fix warning: "pointer targets in passing argument 2 of '_dbus_string_append_len' 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
f5f98a1189
commit
db2af882ef
1 changed files with 1 additions and 1 deletions
|
|
@ -460,7 +460,7 @@ _dbus_sha_final (DBusSHAContext *context,
|
|||
|
||||
sha_finish (context, digest);
|
||||
|
||||
if (!_dbus_string_append_len (results, digest, 20))
|
||||
if (!_dbus_string_append_len (results, (const char *) digest, 20))
|
||||
return FALSE;
|
||||
|
||||
/* some kind of security paranoia, though it seems pointless
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue