Module: wine Branch: master Commit: 709735e294412a0cab15696faa9fcf6833e552bc URL: http://source.winehq.org/git/wine.git/?a=commit;h=709735e294412a0cab15696faa...
Author: Hans Leidekker hans@it.vu.nl Date: Mon Nov 13 16:26:53 2006 +0100
setupapi: The inf section suffix that corresponds to __x86_64 is .ntamd64.
---
dlls/setupapi/install.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/setupapi/install.c b/dlls/setupapi/install.c index f6a541b..4c60b86 100644 --- a/dlls/setupapi/install.c +++ b/dlls/setupapi/install.c @@ -995,7 +995,7 @@ void WINAPI InstallHinfSectionW( HWND hw #ifdef __i386__ static const WCHAR nt_platformW[] = {'.','n','t','x','8','6',0}; #elif defined(__x86_64) - static const WCHAR nt_platformW[] = {'.','n','t','i','a','6','4',0}; + static const WCHAR nt_platformW[] = {'.','n','t','a','m','d','6','4',0}; #else /* FIXME: other platforms */ static const WCHAR nt_platformW[] = {'.','n','t',0}; #endif