From 97ff2de43204f70383ad079b88b64700841bfb96 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Wed, 27 Jul 2005 02:01:02 +0000 Subject: [PATCH] - Fix warnings svn path=/trunk/; revision=16785 --- reactos/lib/comdlg32/cdlg32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/comdlg32/cdlg32.c b/reactos/lib/comdlg32/cdlg32.c index 1790aef0079..d351dbd9947 100644 --- a/reactos/lib/comdlg32/cdlg32.c +++ b/reactos/lib/comdlg32/cdlg32.c @@ -67,7 +67,7 @@ static const char * GPA_string = "Failed to get entry point %s for hinst = 0x%08 #define GPA(dest, hinst, name) \ if(!(dest = (void*)GetProcAddress(hinst,name)))\ { \ - ERR(GPA_string, debugstr_a(name), hinst); \ + ERR((LPSTR)GPA_string, debugstr_a(name), hinst); \ return FALSE; \ }