Fix wrong number of parameters in call to escape_string().

2002-07-31  Sven Neumann  <sven@gimp.org>

	* gtk/queryimmodules.c (print_escaped): Fix wrong number of
	parameters in call to escape_string().
This commit is contained in:
Sven Neumann
2002-07-31 18:40:23 +00:00
committed by Sven Neumann
parent f361d10ca1
commit cec2b23e6b
7 changed files with 31 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-07-31 Sven Neumann <sven@gimp.org>
* gtk/queryimmodules.c (print_escaped): Fix wrong number of
parameters in call to escape_string().
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@@ -1,3 +1,8 @@
2002-07-31 Sven Neumann <sven@gimp.org>
* gtk/queryimmodules.c (print_escaped): Fix wrong number of
parameters in call to escape_string().
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@@ -1,3 +1,8 @@
2002-07-31 Sven Neumann <sven@gimp.org>
* gtk/queryimmodules.c (print_escaped): Fix wrong number of
parameters in call to escape_string().
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@@ -1,3 +1,8 @@
2002-07-31 Sven Neumann <sven@gimp.org>
* gtk/queryimmodules.c (print_escaped): Fix wrong number of
parameters in call to escape_string().
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@@ -1,3 +1,8 @@
2002-07-31 Sven Neumann <sven@gimp.org>
* gtk/queryimmodules.c (print_escaped): Fix wrong number of
parameters in call to escape_string().
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@@ -1,3 +1,8 @@
2002-07-31 Sven Neumann <sven@gimp.org>
* gtk/queryimmodules.c (print_escaped): Fix wrong number of
parameters in call to escape_string().
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

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);
}