Commit cb12dd6c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shlwapi: Cast-qual warnings fix.

parent d14d772f
...@@ -49,9 +49,9 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST); ...@@ -49,9 +49,9 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST);
* *
* Internal helper: move a DataBlock pointer to the next item. * Internal helper: move a DataBlock pointer to the next item.
*/ */
inline static LPSHLWAPI_CLIST NextItem(LPCSHLWAPI_CLIST lpList) inline static LPSHLWAPI_CLIST NextItem(LPSHLWAPI_CLIST lpList)
{ {
const char* address = (const char*)lpList; char* address = (char*)lpList;
address += lpList->ulSize; address += lpList->ulSize;
return (LPSHLWAPI_CLIST)address; return (LPSHLWAPI_CLIST)address;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment