[PATCH] ole32: Rename entry_updatable() to its more common spelling.

Francois Gouget fgouget at free.fr
Thu Jan 4 08:55:48 CST 2018


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/ole32/datacache.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c
index ad55c6e5611..4ba08268d73 100644
--- a/dlls/ole32/datacache.c
+++ b/dlls/ole32/datacache.c
@@ -2562,7 +2562,7 @@ static HRESULT WINAPI DataCache_IOleCache2_SetData(
     return OLE_E_BLANK;
 }
 
-static BOOL entry_updateable( DataCacheEntry *entry, DWORD mode )
+static BOOL entry_updatable( DataCacheEntry *entry, DWORD mode )
 {
     BOOL is_blank = entry->stgmedium.tymed == TYMED_NULL;
 
@@ -2595,7 +2595,7 @@ static HRESULT WINAPI DataCache_UpdateCache( IOleCache2 *iface, IDataObject *dat
     {
         slots++;
 
-        if (!entry_updateable( cache_entry, mode ))
+        if (!entry_updatable( cache_entry, mode ))
         {
             done_one = TRUE;
             continue;
-- 
2.15.1




More information about the wine-patches mailing list