]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sd-journal: rebreak comments
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 6 May 2023 15:23:44 +0000 (00:23 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 6 May 2023 15:26:49 +0000 (00:26 +0900)
src/libsystemd/sd-journal/journal-file.c

index 530ec6921f40f642c9842ca007bcc0a883f01b72..ed5fd0b164bc43295672a6817f1ceaf802d507e1 100644 (file)
@@ -2813,21 +2813,17 @@ static int generic_array_bisect(
 
         ci = ordered_hashmap_get(f->chain_cache, &first);
         if (ci && n > ci->total && ci->begin != 0) {
-                /* Ah, we have iterated this bisection array chain
-                 * previously! Let's see if we can skip ahead in the
-                 * chain, as far as the last time. But we can't jump
-                 * backwards in the chain, so let's check that
-                 * first. */
+                /* Ah, we have iterated this bisection array chain previously! Let's see if we can skip ahead
+                 * in the chain, as far as the last time. But we can't jump backwards in the chain, so let's
+                 * check that first. */
 
                 r = test_object(f, ci->begin, needle);
                 if (r < 0)
                         return r;
 
                 if (r == TEST_LEFT) {
-                        /* OK, what we are looking for is right of the
-                         * begin of this EntryArray, so let's jump
-                         * straight to previously cached array in the
-                         * chain */
+                        /* OK, what we are looking for is right of the begin of this EntryArray, so let's
+                         * jump straight to previously cached array in the chain */
 
                         a = ci->array;
                         n -= ci->total;