From 3e88293bae37a5e78a8c46cc0eabf452a9591d26 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 23 Jan 2009 14:42:13 -0300 Subject: Fix bug on error report. --- network/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network') diff --git a/network/common.c b/network/common.c index 115ebff2..2f690b75 100644 --- a/network/common.c +++ b/network/common.c @@ -229,7 +229,7 @@ static int bnep_exec(const char **argv) if (!g_spawn_async(NULL, (char **) argv, NULL, flags, bnep_setup, NULL, &pid, NULL)) { - error("Unable to execute %s %s", *argv[0], *argv[1]); + error("Unable to execute %s %s", argv[0], argv[1]); return -EINVAL; } -- cgit