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:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-07-26 05:01:03 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2003-07-26 05:01:03 +0400
commitffe3e7ef4f4b34b31bd49f388ea79df469bf5442 (patch)
tree539558b6241d4c7cf1b551a523bd393445b20e37
parent8c21a4cdfbe6e9325f79d8f6d89f4d3ffd481947 (diff)
2003-07-26 Eric R. Krause <ekrause_98@users.sourceforge.net>
* include/onjidl.h (IMalloc): Fix typo.
-rw-r--r--winsup/w32api/ChangeLog4
-rw-r--r--winsup/w32api/include/objidl.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 98da635e3..5130c468a 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-26 Eric R. Krause <ekrause_98@users.sourceforge.net>
+
+ * include/objidl.h (IMalloc): Fix typo.
+
2003-07-24 Danny Smith <dannysmith@users.sourceforge.net>
* include/dkk/ntifs.h: Fix typo in guard for
diff --git a/winsup/w32api/include/objidl.h b/winsup/w32api/include/objidl.h
index f9ec9d52c..6cbd03874 100644
--- a/winsup/w32api/include/objidl.h
+++ b/winsup/w32api/include/objidl.h
@@ -1,6 +1,6 @@
#ifndef _OBJIDL_H
#define _OBJIDL_H
-#if __GNUC__ >=3
+#if __GNUC__ >= 3
#pragma GCC system_header
#endif
@@ -493,7 +493,7 @@ DECLARE_INTERFACE_(IMalloc,IUnknown)
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
STDMETHOD_(ULONG,Release)(THIS) PURE;
STDMETHOD_(void*,Alloc)(THIS_ ULONG) PURE;
- STDMETHOD_(void*,ReAlloc)(THIS_ void*,ULONG) PURE;
+ STDMETHOD_(void*,Realloc)(THIS_ void*,ULONG) PURE;
STDMETHOD_(void,Free)(THIS_ void*) PURE;
STDMETHOD_(ULONG,GetSize)(THIS_ void*) PURE;
STDMETHOD_(int,DidAlloc)(THIS_ void*) PURE;