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 /clients/cli/utils.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 'clients/cli/utils.h')
-rw-r--r-- | clients/cli/utils.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clients/cli/utils.h b/clients/cli/utils.h index 61e91d0282..dd3913fa43 100644 --- a/clients/cli/utils.h +++ b/clients/cli/utils.h @@ -292,8 +292,8 @@ nmc_meta_generic_get_str_i18n_null(const char *s, NMMetaAccessorGetType get_type { if (get_type == NM_META_ACCESSOR_GET_TYPE_PARSABLE) { /* in parsable mode, return NULL. That is useful if @s is a pretty string - * to describe a missing value (like "(unknown)"). We don't want to print - * that for parsable mode. */ + * to describe a missing value (like "(unknown)"). We don't want to print + * that for parsable mode. */ return NULL; } return nmc_meta_generic_get_str_i18n(s, get_type); @@ -339,15 +339,15 @@ nmc_meta_generic_get_enum_with_detail(NmcMetaGenericGetEnumType get_enum_type, switch (get_enum_type) { case NMC_META_GENERIC_GET_ENUM_TYPE_PARENTHESES: /* note that this function will always print "$NUM ($NICK)", also in PARSABLE - * mode. That might not be desired, but it's done for certain properties to preserve - * previous behavior. */ + * mode. That might not be desired, but it's done for certain properties to preserve + * previous behavior. */ if (get_type == NM_META_ACCESSOR_GET_TYPE_PRETTY) return g_strdup_printf(_("%lld (%s)"), (long long) enum_val, gettext(str_val)); return g_strdup_printf("%lld (%s)", (long long) enum_val, str_val); case NMC_META_GENERIC_GET_ENUM_TYPE_DASH: /* note that this function will always print "$NUM ($NICK)", also in PARSABLE - * mode. That might not be desired, but it's done for certain properties to preserve - * previous behavior. */ + * mode. That might not be desired, but it's done for certain properties to preserve + * previous behavior. */ if (get_type == NM_META_ACCESSOR_GET_TYPE_PRETTY) return g_strdup_printf(_("%lld - %s"), (long long) enum_val, gettext(str_val)); return g_strdup_printf("%lld - %s", (long long) enum_val, str_val); |