shell32: Don't print the function name twice in an ERR.

Michael Stefaniuc mstefani at redhat.de
Wed Feb 3 17:20:48 CST 2010


---
Found in the winefixme report database with:
select * from message where text like function || "%";


 dlls/shell32/classes.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/shell32/classes.c b/dlls/shell32/classes.c
index f4aa870..0556f97 100644
--- a/dlls/shell32/classes.c
+++ b/dlls/shell32/classes.c
@@ -426,7 +426,7 @@ BOOL HCR_GetFolderAttributes(LPCITEMIDLIST pidlFolder, LPDWORD pdwAttributes)
     if (!_ILIsPidlSimple(pidlFolder)) { 
         static int firstHit = 1;
         if (firstHit) {
-            ERR("HCR_GetFolderAttributes should be called for simple PIDL's only!\n");
+            ERR("should be called for simple PIDL's only!\n");
             firstHit = 0;
         }
         return FALSE;
-- 
1.6.6.1



More information about the wine-patches mailing list