From 24cf0606b43038c7ce5e9c6ccb921895619c04f0 Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Mon, 20 Feb 2017 16:19:50 -0500 Subject: Clean up word replication. -- This fixes extra word repetitions (like "the the" or "is is") in the code and docs. Signed-off-by: Daniel Kahn Gillmor --- common/dotlock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common/dotlock.c') diff --git a/common/dotlock.c b/common/dotlock.c index 7ebd5231c..5fe652ec0 100644 --- a/common/dotlock.c +++ b/common/dotlock.c @@ -411,7 +411,7 @@ struct dotlock_handle }; -/* A list of of all lock handles. The volatile attribute might help +/* A list of all lock handles. The volatile attribute might help if used in an atexit handler. Note that [UN]LOCK_all_lockfiles must not change ERRNO. */ static volatile dotlock_t all_lockfiles; @@ -913,7 +913,7 @@ dotlock_create (const char *file_to_lock, unsigned int flags) -/* Convenience function to store a file descriptor (or any any other +/* Convenience function to store a file descriptor (or any other integer value) in the context of handle H. */ void dotlock_set_fd (dotlock_t h, int fd) @@ -921,7 +921,7 @@ dotlock_set_fd (dotlock_t h, int fd) h->extra_fd = fd; } -/* Convenience function to retrieve a file descriptor (or any any other +/* Convenience function to retrieve a file descriptor (or any other integer value) stored in the context of handle H. */ int dotlock_get_fd (dotlock_t h) -- cgit v1.2.3