From dd03d91527b12214b577fde68b60e6b39badf55c Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 7 May 2023 00:15:28 +0900 Subject: [PATCH] sd-journal: fix comment --- src/libsystemd/sd-journal/journal-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsystemd/sd-journal/journal-file.c b/src/libsystemd/sd-journal/journal-file.c index 432a47c4ee7..530ec6921f4 100644 --- a/src/libsystemd/sd-journal/journal-file.c +++ b/src/libsystemd/sd-journal/journal-file.c @@ -2791,7 +2791,7 @@ static int generic_array_bisect( * an object is matched against the given needle. * * Given a journal file, the offset of an object and the needle, the test_object() function should - * return TEST_LEFT if the needle is located earlier in the entry array chain, TEST_RIGHT if the + * return TEST_LEFT if the needle is located earlier in the entry array chain, TEST_LEFT if the * needle is located later in the entry array chain and TEST_FOUND if the object matches the needle. * If test_object() returns TEST_FOUND for a specific object, that object's information will be used * to populate the return values of this function. If test_object() never returns TEST_FOUND, the