From: Eli Zaretskii Date: Sun, 9 Jan 2022 17:21:03 +0000 (+0200) Subject: ; * src/filelock.c (lock_if_free): Fix comment wording. X-Git-Tag: emacs-29.0.90~3171 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4b6efda54ef2af7e745b760707c34ed81c821d3c;p=emacs.git ; * src/filelock.c (lock_if_free): Fix comment wording. --- diff --git a/src/filelock.c b/src/filelock.c index 8453f17cd4b..c3927f58fae 100644 --- a/src/filelock.c +++ b/src/filelock.c @@ -620,8 +620,8 @@ lock_if_free (lock_info_type *clasher, char *lfname) || defined BE_USE_POSITIVE_POSIX_ERRORS return err; #else - /* On Haiku, POSIX error values are negative by default, but this - code's callers assume that any errno value is positive. */ + /* On Haiku, POSIX errno values are negative by default, but this + code's callers assume that all errno values are positive. */ return -err; #endif }