- Fix warnings

svn path=/trunk/; revision=16785
This commit is contained in:
Alex Ionescu 2005-07-27 02:01:02 +00:00
parent 65282e530e
commit 97ff2de432

View file

@ -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; \
}