summaryrefslogtreecommitdiff
path: root/tools/obex-client-tool.c
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2011-07-10 23:09:02 +0300
committerMarcel Holtmann <marcel@holtmann.org>2012-12-04 22:22:01 +0100
commitc869ca28b82757500bb5c86d1f58cdcd9fe5ea52 (patch)
treeb9b1c5f6f843e084fb801d9b09d3a54ca80e1da9 /tools/obex-client-tool.c
parent508cb6f8c221e1c431fe3ee25664d265a227d95b (diff)
downloadbluez-c869ca28b82757500bb5c86d1f58cdcd9fe5ea52.tar.gz
gobex: Make use of va-args headers in higher level functions
Diffstat (limited to 'tools/obex-client-tool.c')
-rw-r--r--tools/obex-client-tool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/obex-client-tool.c b/tools/obex-client-tool.c
index 9b3279a24..a621ec241 100644
--- a/tools/obex-client-tool.c
+++ b/tools/obex-client-tool.c
@@ -112,7 +112,7 @@ static void conn_complete(GObex *obex, GError *err, GObexPacket *rsp,
static void cmd_connect(int argc, char **argv)
{
- g_obex_connect(obex, NULL, 0, conn_complete, NULL, NULL);
+ g_obex_connect(obex, conn_complete, NULL, NULL, G_OBEX_HDR_INVALID);
}
struct put_data {