Module: wine Branch: master Commit: c9f97978909eb43ad635fc0b29383f759582d690 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=c9f97978909eb43ad635fc0b...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Wed Sep 20 22:03:08 2006 +0100
ole32: Cast-qual warnings fix.
---
dlls/ole32/stg_prop.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ole32/stg_prop.c b/dlls/ole32/stg_prop.c index e39a5d5..f0d144b 100644 --- a/dlls/ole32/stg_prop.c +++ b/dlls/ole32/stg_prop.c @@ -1511,7 +1511,7 @@ static BOOL PropertyStorage_DictionaryWr DWORD keyLen, pad = 0;
StorageUtl_WriteDWord((LPBYTE)&keyLen, 0, - (lstrlenW((LPWSTR)key) + 1) * sizeof(WCHAR)); + (lstrlenW((LPCWSTR)key) + 1) * sizeof(WCHAR)); c->hr = IStream_Write(This->stm, &keyLen, sizeof(keyLen), &count); if (FAILED(c->hr)) goto end; @@ -2521,12 +2521,12 @@ HRESULT WINAPI FmtIdToPropStgName(const lstrcpyW(str, szDocSummaryInfo); else { - BYTE *fmtptr; + const BYTE *fmtptr; WCHAR *pstr = str; ULONG bitsRemaining = BITS_PER_BYTE;
*pstr++ = 5; - for (fmtptr = (BYTE *)rfmtid; fmtptr < (BYTE *)rfmtid + sizeof(FMTID); ) + for (fmtptr = (const BYTE *)rfmtid; fmtptr < (const BYTE *)rfmtid + sizeof(FMTID); ) { ULONG i = *fmtptr >> (BITS_PER_BYTE - bitsRemaining);