Skip to content

Commit

Permalink
geanyctags: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
techee committed Oct 14, 2014
1 parent a8a40d3 commit fb730c5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions geanyctags/src/geanyctags.c
Expand Up @@ -107,7 +107,7 @@ static void spawn_cmd(const gchar *cmd, const gchar *dir)
gchar *working_dir;
gchar *utf8_working_dir;
gchar *utf8_cmd_string;
gchar *out, *err;
gchar *err;
gint exitcode;

#ifndef G_OS_WIN32
Expand Down Expand Up @@ -135,7 +135,7 @@ static void spawn_cmd(const gchar *cmd, const gchar *dir)
g_free(utf8_cmd_string);

if (!utils_spawn_sync(working_dir, argv, NULL, G_SPAWN_SEARCH_PATH,
NULL, NULL, &out, &err, &exitcode, &error) || exitcode != 0)
NULL, NULL, NULL, &err, &exitcode, &error) || exitcode != 0)
{
if (error != NULL)
{
Expand All @@ -151,7 +151,6 @@ static void spawn_cmd(const gchar *cmd, const gchar *dir)

g_strfreev(argv);
g_free(working_dir);
g_free(out);
g_free(err);
}

Expand Down

0 comments on commit fb730c5

Please sign in to comment.