Commit dbd473ff authored by Alexandre Julliard's avatar Alexandre Julliard

crypt32: Use unsigned int instead of size_t to avoid printf format warnings.

parent 043fd669
......@@ -74,7 +74,7 @@ void *Context_CreateDataContext(size_t contextSize)
return ret;
}
void *Context_CreateLinkContext(size_t contextSize, void *linked, size_t extra,
void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned int extra,
BOOL addRef)
{
void *context = CryptMemAlloc(contextSize + sizeof(LINK_CONTEXT) + extra);
......
......@@ -115,7 +115,7 @@ void *Context_CreateDataContext(size_t contextSize);
* it should be) linked is addref'd.
* Free with Context_Release.
*/
void *Context_CreateLinkContext(size_t contextSize, void *linked, size_t extra,
void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned int extra,
BOOL addRef);
/* Returns a pointer to the extra bytes allocated with context, which must be
......
......@@ -377,7 +377,7 @@ static void *CRYPT_CollectionCreateContextFromChild(PWINE_COLLECTIONSTORE store,
}
static BOOL CRYPT_CollectionAddContext(PWINE_COLLECTIONSTORE store,
size_t contextStoreOffset, void *context, void *toReplace, size_t contextSize,
unsigned int contextStoreOffset, void *context, void *toReplace, unsigned int contextSize,
void **pChildContext)
{
BOOL ret;
......
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