diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2009-01-23 14:42:13 -0300 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2009-01-23 14:42:13 -0300 |
commit | 3e88293bae37a5e78a8c46cc0eabf452a9591d26 (patch) | |
tree | 42203beea9f0e84c0889affedf8c9ad348425ff5 /network | |
parent | be2320f464ee361ec05be6d94201829282006d7e (diff) |
Fix bug on error report.
Diffstat (limited to 'network')
-rw-r--r-- | network/common.c | 2 |
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; } |