summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/ChangeLog5
-rwxr-xr-xwinsup/cygwin/libstdcxx_wrapper.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 71b4a4aa8..efa6a08d3 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-18 Dave Korn <dave.korn.cygwin@gmail.com>
+
+ * libstdcxx_wrapper.cc (operator delete): Remove stray space in
+ asm name.
+
2009-07-17 Christopher Faylor <me+cygwin@cgf.cx>
* cygtls.cc (_cygtls::init_exception_handler): Test for e, not e->prev
diff --git a/winsup/cygwin/libstdcxx_wrapper.cc b/winsup/cygwin/libstdcxx_wrapper.cc
index a0d2f25ee..42d4c5bca 100755
--- a/winsup/cygwin/libstdcxx_wrapper.cc
+++ b/winsup/cygwin/libstdcxx_wrapper.cc
@@ -28,7 +28,7 @@ extern void *operator new(std::size_t sz) throw (std::bad_alloc)
extern void *operator new[](std::size_t sz) throw (std::bad_alloc)
__asm__ ("___wrap__Znaj");
extern void operator delete(void *p) throw()
- __asm__ ("___wrap__ZdlPv ");
+ __asm__ ("___wrap__ZdlPv");
extern void operator delete[](void *p) throw()
__asm__ ("___wrap__ZdaPv");
extern void *operator new(std::size_t sz, const std::nothrow_t &nt) throw()