From 58c7aa46914b21c3bb2300e4bd9c0369bbf3685d Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Mon, 30 Nov 2009 18:18:58 +0100 Subject: [PATCH] ntdll: Silence a common warning. --- dlls/ntdll/directory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/directory.c b/dlls/ntdll/directory.c index a09aab163a0..40cc4550b94 100644 --- a/dlls/ntdll/directory.c +++ b/dlls/ntdll/directory.c @@ -2412,7 +2412,7 @@ NTSTATUS CDECL wine_nt_to_unix_file_name( const UNICODE_STRING *nameW, ANSI_STRI if (status != STATUS_SUCCESS) { /* couldn't find it at all, fail */ - WARN( "%s not found in %s\n", debugstr_w(name), unix_name ); + TRACE( "%s not found in %s\n", debugstr_w(name), unix_name ); RtlFreeHeap( GetProcessHeap(), 0, unix_name ); return status; }