mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-28 21:10:24 +01:00
Fix warning: "pointer targets in passing argument 1 of 'check_sha_binary' 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
9ef8f69ab0
commit
dd75ab9531
1 changed files with 1 additions and 1 deletions
|
|
@ -550,7 +550,7 @@ static dbus_bool_t
|
|||
check_sha_str (const char *input,
|
||||
const char *expected)
|
||||
{
|
||||
return check_sha_binary (input, strlen (input), expected);
|
||||
return check_sha_binary ((unsigned char *) input, strlen (input), expected);
|
||||
}
|
||||
|
||||
static dbus_bool_t
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue