commit | 216e7385ef12af174f973787e8f27482f4bcf28a | [log] [tgz] |
---|---|---|
author | Janos Follath <janos.follath@arm.com> | Wed Mar 06 13:43:02 2019 +0000 |
committer | Janos Follath <janos.follath@arm.com> | Wed Mar 06 14:00:44 2019 +0000 |
tree | 0e35ac165d005bd292ee5f57ec2f2ce476d12093 | |
parent | f56da14408868744d1376f130aa0c7097b415423 [diff] [blame] |
Fix typo
diff --git a/library/bignum.c b/library/bignum.c index e9c3867..d142fe6 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -560,7 +560,7 @@ if( radix >= 16 ) n >>= 1; /* Number of hexadecimal digits necessary to * present `n`. */ - n += 1; /* NULL termination */ + n += 1; /* Terminating null byte */ n += 1; /* Compensate for the divisions above, which round down `n` * in case it's not even. */ n += 1; /* Potential '-'-sign. */