mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-08 19:50:34 +01:00
Fixed wrong spelling of DBUS_DISABLE_ASSERTS usage on windows.
This commit is contained in:
parent
f82d7d98a0
commit
2bb58750aa
1 changed files with 4 additions and 2 deletions
|
|
@ -2108,7 +2108,7 @@ _dbus_replace_install_prefix (const char *configure_time_path)
|
|||
#endif
|
||||
}
|
||||
|
||||
#if !defined (DBUS_DISABLE_ASSERT) || defined(DBUS_BUILD_TESTS)
|
||||
#if !defined (DBUS_DISABLE_ASSERTS) || defined(DBUS_BUILD_TESTS)
|
||||
|
||||
#if defined(_MSC_VER) || defined(DBUS_WINCE)
|
||||
# ifdef BACKTRACES
|
||||
|
|
@ -2382,7 +2382,10 @@ static void dump_backtrace()
|
|||
CloseHandle(hThread);
|
||||
CloseHandle(hCurrentThread);
|
||||
}
|
||||
#endif
|
||||
#endif /* asserts or tests enabled */
|
||||
|
||||
#ifdef BACKTRACES
|
||||
void _dbus_print_backtrace(void)
|
||||
{
|
||||
init_backtrace();
|
||||
|
|
@ -2394,7 +2397,6 @@ void _dbus_print_backtrace(void)
|
|||
_dbus_verbose (" D-Bus not compiled with backtrace support\n");
|
||||
}
|
||||
#endif
|
||||
#endif /* asserts or tests enabled */
|
||||
|
||||
static dbus_uint32_t fromAscii(char ascii)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue