diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-19 16:34:17 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-19 18:49:46 +0100 |
commit | ba9ddcb8d6eb8a6cd4c258621a5701851ad92e6e (patch) | |
tree | bd68ab2deb6942a8903924cf2b54944f1b9d32f9 /src/test/test-gpt.c | |
parent | docs: document the partition UUID used by homed (diff) | |
download | systemd-ba9ddcb8d6eb8a6cd4c258621a5701851ad92e6e.tar.xz systemd-ba9ddcb8d6eb8a6cd4c258621a5701851ad92e6e.zip |
Trivial style fixes
Diffstat (limited to 'src/test/test-gpt.c')
-rw-r--r-- | src/test/test-gpt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/test-gpt.c b/src/test/test-gpt.c index bcab6bdf6f..9b0eb57373 100644 --- a/src/test/test-gpt.c +++ b/src/test/test-gpt.c @@ -18,7 +18,7 @@ static void test_gpt_types_against_architectures(void) { /* Dumps a table indicating for which architectures we know we have matching GPT partition * types. Also validates whether we can properly categorize the entries. */ - FOREACH_STRING(prefix, "root-", "usr-") { + FOREACH_STRING(prefix, "root-", "usr-") for (int a = 0; a < _ARCHITECTURE_MAX; a++) { const char *suffix; @@ -48,7 +48,6 @@ static void test_gpt_types_against_architectures(void) { assert_se(gpt_partition_type_is_usr_verity(id)); } } - } } int main(int argc, char *argv[]) { |