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/NetworkManagerUtils.h | |
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/NetworkManagerUtils.h')
-rw-r--r-- | src/NetworkManagerUtils.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/NetworkManagerUtils.h b/src/NetworkManagerUtils.h index b21e42d410..699c78dade 100644 --- a/src/NetworkManagerUtils.h +++ b/src/NetworkManagerUtils.h @@ -74,16 +74,16 @@ NMPlatformRoutingRule *nm_ip_routing_rule_to_platform(const NMIPRoutingRule *rul typedef enum { /* There is no watched_obj argument, and the shutdown is delayed until the user - * explicitly calls unregister on the returned handle. */ + * explicitly calls unregister on the returned handle. */ NM_SHUTDOWN_WAIT_TYPE_HANDLE, /* The watched_obj argument is a GObject, and shutdown is delayed until the object - * gets destroyed (or unregistered). */ + * gets destroyed (or unregistered). */ NM_SHUTDOWN_WAIT_TYPE_OBJECT, /* The watched_obj argument is a GCancellable, and shutdown is delayed until the object - * gets destroyed (or unregistered). Note that after NM_SHUTDOWN_TIMEOUT_MS, the - * cancellable will be cancelled to notify listeners about the shutdown. */ + * gets destroyed (or unregistered). Note that after NM_SHUTDOWN_TIMEOUT_MS, the + * cancellable will be cancelled to notify listeners about the shutdown. */ NM_SHUTDOWN_WAIT_TYPE_CANCELLABLE, } NMShutdownWaitType; @@ -184,10 +184,10 @@ static inline NMDhcpLease * nm_dhcp_lease_new_from_options(GHashTable *options_take) { /* a NMDhcpLease is really just a GHashTable. But it's also supposed to be *immutable*. - * - * Hence, the API here takes over ownership of the reference to @options_take, that - * is to emphasize that we acquire ownership of the hash, and it should not be modified - * anymore. */ + * + * Hence, the API here takes over ownership of the reference to @options_take, that + * is to emphasize that we acquire ownership of the hash, and it should not be modified + * anymore. */ return (NMDhcpLease *) options_take; } |