diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-07-26 01:01:03 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-07-26 01:01:03 +0000 |
commit | ffe3e7ef4f4b34b31bd49f388ea79df469bf5442 (patch) | |
tree | 539558b6241d4c7cf1b551a523bd393445b20e37 | |
parent | 8c21a4cdfbe6e9325f79d8f6d89f4d3ffd481947 (diff) | |
download | newlib-ffe3e7ef4f4b34b31bd49f388ea79df469bf5442.zip newlib-ffe3e7ef4f4b34b31bd49f388ea79df469bf5442.tar.gz newlib-ffe3e7ef4f4b34b31bd49f388ea79df469bf5442.tar.bz2 |
2003-07-26 Eric R. Krause <ekrause_98@users.sourceforge.net>
* include/onjidl.h (IMalloc): Fix typo.
-rw-r--r-- | winsup/w32api/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/w32api/include/objidl.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 98da635..5130c46 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 f9ec9d5..6cbd038 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; |