summaryrefslogtreecommitdiff
path: root/tests/src/test-script-hook.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/test-script-hook.c')
-rw-r--r--tests/src/test-script-hook.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/src/test-script-hook.c b/tests/src/test-script-hook.c
index abaf8543..534fcd89 100644
--- a/tests/src/test-script-hook.c
+++ b/tests/src/test-script-hook.c
@@ -9,8 +9,6 @@ static GKeyFile *config;
int
main (int argc, char **argv)
{
- g_autoptr(GString) status_text = NULL;
-
#if !defined(GLIB_VERSION_2_36)
g_type_init ();
#endif
@@ -26,7 +24,7 @@ main (int argc, char **argv)
return EXIT_FAILURE;
}
- status_text = g_string_new ("SCRIPT-HOOK");
+ g_autoptr(GString) status_text = g_string_new ("SCRIPT-HOOK");
g_string_append_printf (status_text, " %s", argv[1]);
if (g_getenv ("USER"))
g_string_append_printf (status_text, " USER=%s", g_getenv ("USER"));