escape_string() only takes one arg

2002-07-31  jacob berkman  <jacob@ximian.com>

	* gtk/queryimmodules.c (print_escaped): escape_string() only takes
	one arg
This commit is contained in:
jacob berkman
2002-07-31 19:08:39 +00:00
committed by Jacob Berkman
parent 30f84bb856
commit d202b55bc0
7 changed files with 31 additions and 1 deletions

View File

@ -72,7 +72,7 @@ escape_string (const char *str)
static void
print_escaped (const char *str)
{
char *tmp = escape_string (str, NULL);
char *tmp = escape_string (str);
printf ("\"%s\" ", tmp);
g_free (tmp);
}