summaryrefslogtreecommitdiffstats
path: root/src/shared/user-record.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-11-13 08:19:49 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2020-11-13 08:28:47 +0100
commitd51c4fca291c6b8e566df65b0fd6e6262c3bf988 (patch)
tree4cb4d803f5002c1160272da6a6a964081608cac9 /src/shared/user-record.c
parentratelimit: fix integer overflow (diff)
downloadsystemd-d51c4fca291c6b8e566df65b0fd6e6262c3bf988.tar.xz
systemd-d51c4fca291c6b8e566df65b0fd6e6262c3bf988.zip
tree-wide: fix "a the" or "the a"
Diffstat (limited to '')
-rw-r--r--src/shared/user-record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/user-record.c b/src/shared/user-record.c
index afa3986642..6c48c56a2a 100644
--- a/src/shared/user-record.c
+++ b/src/shared/user-record.c
@@ -2062,7 +2062,7 @@ bool user_record_compatible(UserRecord *a, UserRecord *b) {
assert(a);
assert(b);
- /* If either lacks a the regular section, we can't really decide, let's hence say they are
+ /* If either lacks the regular section, we can't really decide, let's hence say they are
* incompatible. */
if (!(a->mask & b->mask & USER_RECORD_REGULAR))
return false;