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 /src/nm-dbus-utils.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 'src/nm-dbus-utils.c')
-rw-r--r-- | src/nm-dbus-utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nm-dbus-utils.c b/src/nm-dbus-utils.c index 5afbe33479..2be198599d 100644 --- a/src/nm-dbus-utils.c +++ b/src/nm-dbus-utils.c @@ -26,7 +26,7 @@ nm_dbus_utils_interface_info_lookup_property(const GDBusInterfaceInfo *interface nm_assert(property_name); /* there is also g_dbus_interface_info_lookup_property(), however that makes use - * of a global cache. */ + * of a global cache. */ if (interface_info->properties) { for (i = 0; interface_info->properties[i]; i++) { GDBusPropertyInfo *info = interface_info->properties[i]; @@ -51,7 +51,7 @@ nm_dbus_utils_interface_info_lookup_method(const GDBusInterfaceInfo *interface_i nm_assert(method_name); /* there is also g_dbus_interface_info_lookup_property(), however that makes use - * of a global cache. */ + * of a global cache. */ if (interface_info->methods) { for (i = 0; interface_info->methods[i]; i++) { GDBusMethodInfo *info = interface_info->methods[i]; @@ -221,7 +221,7 @@ void nm_dbus_track_obj_path_deinit(NMDBusTrackObjPath *track) { /* we allow deinit() to be called multiple times (e.g. from - * dispose(), which must be re-entrant). */ + * dispose(), which must be re-entrant). */ nm_assert(track); nm_assert(!track->_notify_target || G_IS_OBJECT(track->_notify_target)); |