From 740b092fda3d5f45102422f22884c88ea6c42858 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 28 Sep 2020 14:50:01 +0200 Subject: format: replace tabs for indentation in code comments sed -i \ -e 's/^'$'\t'' \*/ */g' \ -e 's/^'$'\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t\t\t\t'' \*/ */g' \ $(git ls-files -- '*.[hc]') --- examples/C/glib/add-connection-gdbus.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/C/glib/add-connection-gdbus.c') diff --git a/examples/C/glib/add-connection-gdbus.c b/examples/C/glib/add-connection-gdbus.c index 890d881976..96fb02b166 100644 --- a/examples/C/glib/add-connection-gdbus.c +++ b/examples/C/glib/add-connection-gdbus.c @@ -91,10 +91,10 @@ add_connection(GDBusProxy *proxy, const char *con_name) &setting_builder); /* Call AddConnection with the connection dictionary as argument. - * (g_variant_new() will consume the floating GVariant returned from - * &connection_builder, and g_dbus_proxy_call_sync() will consume the - * floating variant returned from g_variant_new(), so no cleanup is needed. - */ + * (g_variant_new() will consume the floating GVariant returned from + * &connection_builder, and g_dbus_proxy_call_sync() will consume the + * floating variant returned from g_variant_new(), so no cleanup is needed. + */ ret = g_dbus_proxy_call_sync(proxy, "AddConnection", g_variant_new("(a{sa{sv}})", &connection_builder), -- cgit v1.2.1