From 816a25427654d1adf7a9e03f0e0c2f80bd812d41 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 4 Feb 2010 00:20:48 +0100 Subject: [PATCH] shell32: Don't print the function name twice in an ERR. --- dlls/shell32/classes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/classes.c b/dlls/shell32/classes.c index f4aa87068c6..0556f97b0ca 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; -- 2.11.4.GIT