[cosmetic] printing process id in hex in print_error

This commit is contained in:
Olga Kornievskaia 2012-02-28 15:59:14 -05:00
parent 44df987734
commit cba20eeff4

View file

@ -92,7 +92,7 @@ ULONG __cdecl print_error(IN PCCH fmt, ...)
time_fields.Milliseconds, msg);
#else
DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL,
"[%ld] %s", IoGetCurrentProcess(), msg);
"[%04x] %s", PsGetCurrentProcessId(), msg);
#endif
}
va_end(args);