Module: wine Branch: master Commit: d2752363209555a28bc8d8f4818da64fdfc3cbd0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d2752363209555a28bc8d8f481...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Mon Oct 31 21:19:25 2011 +0000
fusion: Remove unneeded address-of operators from array names.
---
dlls/fusion/asmenum.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/fusion/asmenum.c b/dlls/fusion/asmenum.c index 99462ed..52229a8 100644 --- a/dlls/fusion/asmenum.c +++ b/dlls/fusion/asmenum.c @@ -236,9 +236,9 @@ static int compare_assembly_names(ASMNAME *asmname1, ASMNAME *asmname2) DWORD size, i;
size = sizeof(name1); - IAssemblyName_GetProperty(asmname1->name, ASM_NAME_NAME, &name1, &size); + IAssemblyName_GetProperty(asmname1->name, ASM_NAME_NAME, name1, &size); size = sizeof(name2); - IAssemblyName_GetProperty(asmname2->name, ASM_NAME_NAME, &name2, &size); + IAssemblyName_GetProperty(asmname2->name, ASM_NAME_NAME, name2, &size);
if ((ret = strcmpiW(name1, name2))) return ret;