fix "unused variables" warnings and others

This commit is contained in:
Josh Coalson
2002-08-19 21:33:22 +00:00
parent 929ccb881b
commit 875b001f3c
4 changed files with 24 additions and 10 deletions

View File

@@ -214,6 +214,7 @@ static char* convert_string (const char *string, char *from, char *to)
#else
static char* convert_string (const char *string, char *from, char *to)
{
(void)from, (void)to;
if (!string)
return NULL;
return g_strdup(string);
@@ -301,6 +302,7 @@ gboolean test_conversion_charset (char *from, char *to)
#else
gboolean test_conversion_charset (char *from, char *to)
{
(void)from, (void)to;
return TRUE;
}
#endif