diff options
author | Heinrich Schuchardt | 2018-06-28 19:55:46 +0200 |
---|---|---|
committer | Tom Rini | 2018-06-29 11:30:39 -0400 |
commit | 2121bbe49c27b2b2d865fac4e4071c5a90ae90b2 (patch) | |
tree | 822165c8ef30ff1f2e78856d1300fa630fe2824e /include/div64.h | |
parent | 94c6a89a99ce651b97fae565b32d79bf86643415 (diff) |
lib: div64: fix typeo in include/div64.h
%s/reminder/remainder/
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/div64.h')
-rw-r--r-- | include/div64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/div64.h b/include/div64.h index cecb2322bcb..76563ef9786 100644 --- a/include/div64.h +++ b/include/div64.h @@ -232,7 +232,7 @@ extern uint32_t __div64_32(uint64_t *dividend, uint32_t divisor); #endif /* BITS_PER_LONG */ /* Wrapper for do_div(). Doesn't modify dividend and returns - * the result, not reminder. + * the result, not remainder. */ static inline uint64_t lldiv(uint64_t dividend, uint32_t divisor) { |