* kernel32.cc (CreateFileMappingW): Remove stray small_printf.

This commit is contained in:
Corinna Vinschen 2008-04-28 11:13:03 +00:00
parent aacf1864d8
commit 08c76b4b9c
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-04-28 Corinna Vinschen <corinna@vinschen.de>
* kernel32.cc (CreateFileMappingW): Remove stray small_printf.
2008-04-28 Corinna Vinschen <corinna@vinschen.de>
* autoload.cc (IsWow64Process): Remove.

View File

@ -338,7 +338,6 @@ CreateFileMappingW (HANDLE hFile, LPSECURITY_ATTRIBUTES lpAttributes,
status = NtCreateSection (&sect, access, &attr, psize, prot, attribs, hFile);
if (!NT_SUCCESS (status))
{
small_printf ("status %p\n", status);
SetLastError (RtlNtStatusToDosError (status));
return NULL;
}