return FALSE;
}
- _dbus_verbose ("file %s fd 0x%x opened\n", filename_c, hnd);
+ _dbus_verbose ("file %s hnd %p opened\n", filename_c, hnd);
fsize = GetFileSize (hnd, &fsize_hi);
if (fsize == 0xFFFFFFFF && GetLastError() != NO_ERROR)
goto out;
}
- _dbus_verbose ("tmp file %s fd 0x%x opened\n", tmp_filename_c, hnd);
+ _dbus_verbose ("tmp file %s hnd %p opened\n", tmp_filename_c, hnd);
need_unlink = TRUE;
return FALSE;
}
- _dbus_verbose ("exclusive file %s fd 0x%x opened\n", filename_c, hnd);
+ _dbus_verbose ("exclusive file %s hnd %p opened\n", filename_c, hnd);
if (CloseHandle (hnd) == 0)
{
hDBusDaemonMutex = CreateMutexA( NULL, FALSE, cDBusDaemonMutex );
ret = WaitForSingleObject( hDBusDaemonMutex, 1000 );
if ( ret != WAIT_OBJECT_0 ) {
- _dbus_warn("Could not lock mutex %s (return code %d). daemon already running? Bus address not published.\n", cDBusDaemonMutex, ret );
+ _dbus_warn("Could not lock mutex %s (return code %ld). daemon already running? Bus address not published.\n", cDBusDaemonMutex, ret );
return;
}