diff options
author | Max Kellermann <max@musicpd.org> | 2020-09-21 14:52:33 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-09-21 14:52:45 +0200 |
commit | d3c257d97d4ff7671f7761745fd3c5fd23fecc5f (patch) | |
tree | 0c1cfe3d0d458a40803b313a6eb6a156c5b7a536 /src/CommandLine.cxx | |
parent | c13fe63f105c7d0083020d305b947cd8c66bd4dc (diff) |
CommandLine: reindent lambdas
Diffstat (limited to 'src/CommandLine.cxx')
-rw-r--r-- | src/CommandLine.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx index b43253e4c..1413d5374 100644 --- a/src/CommandLine.cxx +++ b/src/CommandLine.cxx @@ -147,15 +147,15 @@ static void version() "Decoders plugins:\n"); decoder_plugins_for_each([](const DecoderPlugin &plugin){ - printf(" [%s]", plugin.name); + printf(" [%s]", plugin.name); - const char *const*suffixes = plugin.suffixes; - if (suffixes != nullptr) - for (; *suffixes != nullptr; ++suffixes) - printf(" %s", *suffixes); + const char *const*suffixes = plugin.suffixes; + if (suffixes != nullptr) + for (; *suffixes != nullptr; ++suffixes) + printf(" %s", *suffixes); - printf("\n"); - }); + printf("\n"); + }); printf("\n" "Filters:\n" |