ntdll: Silence a common warning.

This commit is contained in:
Maarten Lankhorst 2009-11-30 18:18:58 +01:00 committed by Alexandre Julliard
parent cc973b0cdc
commit 58c7aa4691
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}