summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2009-01-23 14:42:13 -0300
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2009-01-23 14:42:13 -0300
commit3e88293bae37a5e78a8c46cc0eabf452a9591d26 (patch)
tree42203beea9f0e84c0889affedf8c9ad348425ff5 /network
parentbe2320f464ee361ec05be6d94201829282006d7e (diff)
Fix bug on error report.
Diffstat (limited to 'network')
-rw-r--r--network/common.c2
1 files changed, 1 insertions, 1 deletions
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;
}