mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
remove repetitive words
Signed-off-by: wellweek <xiezitai@outlook.com>
This commit is contained in:
2
NEWS.md
2
NEWS.md
@ -43,7 +43,7 @@
|
|||||||
- Remove `-dirty` version suffix for windows release build. @itchyny #2888
|
- Remove `-dirty` version suffix for windows release build. @itchyny #2888
|
||||||
- Make use of `od` in tests more compatible. @nabijaczleweli @emanuele6 @nicowilliams #2922
|
- Make use of `od` in tests more compatible. @nabijaczleweli @emanuele6 @nicowilliams #2922
|
||||||
- Add dependabot. @yeikel #2889
|
- Add dependabot. @yeikel #2889
|
||||||
- Extend fuzzing setup to fuzz parser and and JSON serializer. @DavidKorczynski @emanuele6 #2952
|
- Extend fuzzing setup to fuzz parser and JSON serializer. @DavidKorczynski @emanuele6 #2952
|
||||||
- Keep releasing executables with legacy names. @itchyny #2951
|
- Keep releasing executables with legacy names. @itchyny #2951
|
||||||
|
|
||||||
# 1.7
|
# 1.7
|
||||||
|
2
src/decNumber/decCommon.c
vendored
2
src/decNumber/decCommon.c
vendored
@ -376,7 +376,7 @@ static decFloat * decFinalize(decFloat *df, bcdnum *num,
|
|||||||
UBFROMUI(ub-3, 0); // to 00000000
|
UBFROMUI(ub-3, 0); // to 00000000
|
||||||
}
|
}
|
||||||
// [note ub could now be to left of msd, and it is not safe
|
// [note ub could now be to left of msd, and it is not safe
|
||||||
// to write to the the left of the msd]
|
// to write to the left of the msd]
|
||||||
// now at most 3 digits left to non-9 (usually just the one)
|
// now at most 3 digits left to non-9 (usually just the one)
|
||||||
for (; ub>=umsd; *ub=0, ub--) {
|
for (; ub>=umsd; *ub=0, ub--) {
|
||||||
if (*ub==9) continue; // carry
|
if (*ub==9) continue; // carry
|
||||||
|
Reference in New Issue
Block a user