Module: wine Branch: master Commit: 5fd5618e3d334551defa35cba365b14edb55038f URL: https://source.winehq.org/git/wine.git/?a=commit;h=5fd5618e3d334551defa35cba...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 4 15:55:48 2018 +0100
ole32: Rename entry_updatable() to its more common spelling.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 ad55c6e..4ba0826 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;