diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-10-16 17:46:42 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-10-16 17:46:45 +0200 |
commit | 6a6c0dab3097b159acbdc8b4cc5b5008d9171caf (patch) | |
tree | 99c50ae0b4ecb042c85d4983c01bf6a31350185a /src/basic/pidref.h | |
parent | ukify: fix typo (diff) | |
download | systemd-6a6c0dab3097b159acbdc8b4cc5b5008d9171caf.tar.xz systemd-6a6c0dab3097b159acbdc8b4cc5b5008d9171caf.zip |
pidref: fix typo
Follow-up for de34ec188c4d4f682a337445aa7753259cd7f821.
Diffstat (limited to 'src/basic/pidref.h')
-rw-r--r-- | src/basic/pidref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/pidref.h b/src/basic/pidref.h index 494bc9d8f1..42ddf4e50b 100644 --- a/src/basic/pidref.h +++ b/src/basic/pidref.h @@ -42,7 +42,7 @@ struct PidRef { #define PIDREF_NULL (const PidRef) { .fd = -EBADF } /* A special pidref value that we are using when a PID shall be automatically acquired from some surrounding - * context, for example connection peer. Much like PIDREF_NULL it will be considerd unset by + * context, for example connection peer. Much like PIDREF_NULL it will be considered unset by * pidref_is_set().*/ #define PIDREF_AUTOMATIC (const PidRef) { .pid = PID_AUTOMATIC, .fd = -EBADF } |