Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2008-04-28 15:13:03 +0400
committerCorinna Vinschen <corinna@vinschen.de>2008-04-28 15:13:03 +0400
commit08c76b4b9c7029b5d8eac8763304417de97f5a25 (patch)
tree16f4ef6602eb51972ab404b8ee8a3e1f98dec525
parentaacf1864d89d9cf6b80b517655605ee73720e40a (diff)
* kernel32.cc (CreateFileMappingW): Remove stray small_printf.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/kernel32.cc1
2 files changed, 4 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 5e14cd540..27e646fc8 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,9 @@
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.
(Wow64DisableWow64FsRedirection): Remove.
(Wow64RevertWow64FsRedirection): Remove.
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;
}