Fix printf format string in _dbus_win_event_create_inheritable()

Fixup for commit 3f7c36f4.
This commit is contained in:
Ralf Habacker 2021-11-24 13:43:57 +01:00
parent de3b653bd7
commit 42e2dd56b4

View file

@ -4085,7 +4085,7 @@ _dbus_win_event_create_inheritable (DBusError *error)
if (!SetHandleInformation (handle, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT))
{
_dbus_win_set_error_from_last_error (error, "Could not set inheritance for event %s", handle);
_dbus_win_set_error_from_last_error (error, "Could not set inheritance for event %p", handle);
CloseHandle (handle);
return NULL;
}