Diff between cb856533b9c096464b093a219be305d8e3b6e406 and 52dce7c71c80fc89b8a55097204b06f889bc9176

Changed Files

File Additions Deletions Status
obexd/src/bluetooth.c +2 -2 modified

Full Patch

diff --git a/obexd/src/bluetooth.c b/obexd/src/bluetooth.c
index 0a27a00..fc3985c 100644
--- a/obexd/src/bluetooth.c
+++ b/obexd/src/bluetooth.c
@@ -138,8 +138,8 @@ static gint server_start(struct server *server)
 	server->io = g_io_channel_unix_new(sk);
 	g_io_channel_set_close_on_unref(server->io, TRUE);
 	server->watch = g_io_add_watch(server->io,
-			G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
-			connect_event, server);
+				G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
+				connect_event, server);
 
 	return 0;