From 7ee5aede6e2f2dd78f0da6d0cc7235d05ba982f3 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 11 Jul 2011 01:13:46 +0300 Subject: [PATCH] gobex: Minor coding style fixes --- gobex/gobex.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/gobex/gobex.c b/gobex/gobex.c index e72dc410c..cd0a948ad 100644 --- a/gobex/gobex.c +++ b/gobex/gobex.c @@ -964,9 +964,8 @@ guint g_obex_mkdir(GObex *obex, const char *path, GObexResponseFunc func, GObexPacket *req; struct setpath_data data; - req = g_obex_packet_new(G_OBEX_OP_SETPATH, TRUE, - G_OBEX_HDR_NAME, path, - G_OBEX_HDR_INVALID); + req = g_obex_packet_new(G_OBEX_OP_SETPATH, TRUE, G_OBEX_HDR_NAME, path, + G_OBEX_HDR_INVALID); memset(&data, 0, sizeof(data)); g_obex_packet_set_data(req, &data, sizeof(data), G_OBEX_DATA_COPY); @@ -979,9 +978,8 @@ guint g_obex_delete(GObex *obex, const char *name, GObexResponseFunc func, { GObexPacket *req; - req = g_obex_packet_new(G_OBEX_OP_PUT, TRUE, - G_OBEX_HDR_NAME, name, - G_OBEX_HDR_INVALID); + req = g_obex_packet_new(G_OBEX_OP_PUT, TRUE, G_OBEX_HDR_NAME, name, + G_OBEX_HDR_INVALID); return g_obex_send_req(obex, req, -1, func, user_data, err); } -- 2.47.3