Skip to content

Commit

Permalink
sys: Remove two double words in source code comments
Browse files Browse the repository at this point in the history
- s/of of/of/

(cherry picked from commit cf5d9c41246c0583b28d5c1101c6f334e38a67e9)
  • Loading branch information
gbergling authored and laffer1 committed May 19, 2024
1 parent fa5a3de commit 36ccbd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sys/sys/link_elf.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ typedef struct link_map {
#endif
const char *l_name; /* Absolute Path to Library */
const void *l_ld; /* Pointer to .dynamic in memory */
struct link_map *l_next, *l_prev; /* linked list of of mapped libs */
struct link_map *l_next, *l_prev; /* linked list of mapped libs */
caddr_t l_addr; /* Load Offset of library */
const char *l_refname; /* object we are filtering for */
} Link_map;
Expand Down
2 changes: 1 addition & 1 deletion sys/sys/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ __bitcount64(__uint64_t _x)
* The major and minor numbers are encoded in dev_t as MMMmmmMm (where
* letters correspond to bytes). The encoding of the lower 4 bytes is
* constrained by compatibility with 16-bit and 32-bit dev_t's. The
* encoding of of the upper 4 bytes is the least unnatural one consistent
* encoding of the upper 4 bytes is the least unnatural one consistent
* with this and other constraints. Also, the decoding of the m bytes by
* minor() is unnatural to maximize compatibility subject to not discarding
* bits. The upper m byte is shifted into the position of the lower M byte
Expand Down

0 comments on commit 36ccbd2

Please sign in to comment.