diff options
author | Thomas Haller <thaller@redhat.com> | 2020-09-28 14:50:01 +0200 |
---|---|---|
committer | Antonio Cardace <acardace@redhat.com> | 2020-09-28 16:07:52 +0200 |
commit | 740b092fda3d5f45102422f22884c88ea6c42858 (patch) | |
tree | 5a049cc10c99efb5ee39606b8b1d0893a9f46db3 /examples/C/glib/add-connection-gdbus.c | |
parent | 328fb90f3e0d4e35975aff63944ac0412d7893a5 (diff) | |
download | NetworkManager-ac/clang-format.tar.gz |
format: replace tabs for indentation in code commentsac/clang-format
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]')
Diffstat (limited to 'examples/C/glib/add-connection-gdbus.c')
-rw-r--r-- | examples/C/glib/add-connection-gdbus.c | 8 |
1 files changed, 4 insertions, 4 deletions
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), |