summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/kernel32.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2008-04-28 11:13:03 +0000
committerCorinna Vinschen <corinna@vinschen.de>2008-04-28 11:13:03 +0000
commit08c76b4b9c7029b5d8eac8763304417de97f5a25 (patch)
tree16f4ef6602eb51972ab404b8ee8a3e1f98dec525 /winsup/cygwin/kernel32.cc
parentaacf1864d89d9cf6b80b517655605ee73720e40a (diff)
downloadcygnal-08c76b4b9c7029b5d8eac8763304417de97f5a25.tar.gz
cygnal-08c76b4b9c7029b5d8eac8763304417de97f5a25.tar.bz2
cygnal-08c76b4b9c7029b5d8eac8763304417de97f5a25.zip
* kernel32.cc (CreateFileMappingW): Remove stray small_printf.
Diffstat (limited to 'winsup/cygwin/kernel32.cc')
-rw-r--r--winsup/cygwin/kernel32.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/kernel32.cc b/winsup/cygwin/kernel32.cc
index 525432a00..ce83c5655 100644
--- a/winsup/cygwin/kernel32.cc
+++ b/winsup/cygwin/kernel32.cc
@@ -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;
}