[PATCH] shell32: Fix misplaced parenthesis.

Andrey Gusev andrey.goosev at gmail.com
Fri Oct 13 07:03:27 CDT 2017


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/shell32/shell32_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c
index 0ed67907ca..445cd59db9 100644
--- a/dlls/shell32/shell32_main.c
+++ b/dlls/shell32/shell32_main.c
@@ -721,7 +721,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
                     DWORD size = sizeof(buf);
                     int icon_idx;
 
-                    while ((hr = SIC_get_location( psfi->iIcon, file, &size, &icon_idx ) == E_NOT_SUFFICIENT_BUFFER))
+                    while ((hr = SIC_get_location( psfi->iIcon, file, &size, &icon_idx )) == E_NOT_SUFFICIENT_BUFFER)
                     {
                         if (file == buf) file = HeapAlloc( GetProcessHeap(), 0, size );
                         else file = HeapReAlloc( GetProcessHeap(), 0, file, size );
-- 
2.13.6




More information about the wine-patches mailing list