From 4c5f3aa97173b0b073d19a372d45487e4f1f0332 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Fri, 24 Jun 2011 00:04:12 +0200 Subject: [PATCH] utils: follow up to previous commit Signed-off-by: Marc-Antoine Perennou --- js/misc/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/misc/util.js b/js/misc/util.js index e63876e99..fc0b54ae2 100644 --- a/js/misc/util.js +++ b/js/misc/util.js @@ -45,7 +45,7 @@ function spawn(argv) { // occur when trying to parse or start the program. function spawnCommandLine(command_line) { try { - let [success, argc, argv] = GLib.shell_parse_argv(command_line); + let [success, argv] = GLib.shell_parse_argv(command_line); trySpawn(argv); } catch (err) { _handleSpawnError(command_line, err);