From cba20eeff4213339e56c17edc264ad495a2cb244 Mon Sep 17 00:00:00 2001 From: Olga Kornievskaia Date: Tue, 28 Feb 2012 15:59:14 -0500 Subject: [PATCH] [cosmetic] printing process id in hex in print_error --- sys/nfs41_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/nfs41_debug.c b/sys/nfs41_debug.c index 0db4bfa..cb95ecb 100644 --- a/sys/nfs41_debug.c +++ b/sys/nfs41_debug.c @@ -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);