]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Trivial style fixes
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 19 Nov 2021 15:34:17 +0000 (16:34 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 19 Nov 2021 17:49:46 +0000 (18:49 +0100)
src/basic/architecture.c
src/test/test-gpt.c

index 4f5c5b86a69ccff72f988abdeb2d08fba1155e2a..6bf00425524ec299e302cb8b5e6d1b935a798ab5 100644 (file)
@@ -118,20 +118,19 @@ int uname_architecture(void) {
                 { "arc",        ARCHITECTURE_ARC      },
                 { "arceb",      ARCHITECTURE_ARC_BE   },
 #else
-#error "Please register your architecture here!"
+#  error "Please register your architecture here!"
 #endif
         };
 
         static int cached = _ARCHITECTURE_INVALID;
         struct utsname u;
-        unsigned i;
 
         if (cached != _ARCHITECTURE_INVALID)
                 return cached;
 
         assert_se(uname(&u) >= 0);
 
-        for (i = 0; i < ELEMENTSOF(arch_map); i++)
+        for (size_t i = 0; i < ELEMENTSOF(arch_map); i++)
                 if (streq(arch_map[i].machine, u.machine))
                         return cached = arch_map[i].arch;
 
index bcab6bdf6f950366a0379e15e3a390561e88e194..9b0eb57373df6294b4fd223426d10d1381ccf6e6 100644 (file)
@@ -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[]) {