From 015b5425ff290eb99120c1312dbbc19290a57c54 Mon Sep 17 00:00:00 2001 From: Night Owl Date: Sat, 4 Jun 2016 17:05:10 +0500 Subject: [PATCH] Add missing cast. --- dlls/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/util.cpp b/dlls/util.cpp index d1507229..5f25f79f 100644 --- a/dlls/util.cpp +++ b/dlls/util.cpp @@ -2378,7 +2378,7 @@ int CRestore::ReadField( void *pBaseData, TYPEDESCRIPTION *pFields, int fieldCou if ( strlen( (char *)pInputData ) == 0 ) *((void**)pOutputData) = 0; else - *((void**)pOutputData) = FUNCTION_FROM_NAME( (char *)pInputData ); + *((void**)pOutputData) = (void**)FUNCTION_FROM_NAME( (char *)pInputData ); break; default: