Avoid unused variable warning on non-Windows platforms.

This commit is contained in:
Martin Ling 2013-04-28 00:17:46 +01:00
parent 954e81adaf
commit 64eec30d22
1 changed files with 2 additions and 0 deletions

View File

@ -563,5 +563,7 @@ void sp_free_error_message(char *message)
{
#ifdef _WIN32
LocalFree(message);
#else
(void)message;
#endif
}