fix warning when in UNICODE string format

SVN revision: 63845
This commit is contained in:
Vincent Torri 2011-10-05 21:06:08 +00:00
parent e74bd3d04b
commit 178f862158
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ dlsym(void *handle, const char *symbol)
fp = GetProcAddress(handle, new_symbol);
#ifdef UNICODE
free(new_symbol);
free((void *)new_symbol);
#endif /* UNICODE */
if (!fp)