mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-07 01:50:18 +01:00
Fix printf format string in _dbus_win_event_create_inheritable()
Fixup for commit 3f7c36f4.
This commit is contained in:
parent
de3b653bd7
commit
42e2dd56b4
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue