msi: Remove casts to the type of the casted variable.

This commit is contained in:
Michael Stefaniuc 2011-09-23 16:03:23 +02:00 committed by Alexandre Julliard
parent 9477521fb8
commit 6074bd51cc
1 changed files with 2 additions and 2 deletions

View File

@ -3386,7 +3386,7 @@ static UINT ITERATE_RegisterTypeLibraries(MSIRECORD *row, LPVOID param)
{
LPCWSTR guid;
guid = MSI_RecordGetString(row,1);
CLSIDFromString((LPCWSTR)guid, &tl_struct.clsid);
CLSIDFromString( guid, &tl_struct.clsid);
tl_struct.source = strdupW( file->TargetPath );
tl_struct.path = NULL;
@ -3473,7 +3473,7 @@ static UINT ITERATE_UnregisterTypeLibraries( MSIRECORD *row, LPVOID param )
msi_ui_actiondata( package, szUnregisterTypeLibraries, row );
guid = MSI_RecordGetString( row, 1 );
CLSIDFromString( (LPCWSTR)guid, &libid );
CLSIDFromString( guid, &libid );
version = MSI_RecordGetInteger( row, 4 );
language = MSI_RecordGetInteger( row, 2 );