Module: wine Branch: master Commit: 816a25427654d1adf7a9e03f0e0c2f80bd812d41 URL: http://source.winehq.org/git/wine.git/?a=commit;h=816a25427654d1adf7a9e03f0e...
Author: Michael Stefaniuc mstefani@redhat.de Date: Thu Feb 4 00:20:48 2010 +0100
shell32: Don't print the function name twice in an ERR.
---
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;