commit | 870ed0008a661996924ed2da4a825491da051ef9 | [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 13:51:30 2019 +0000 |
tree | 5c188b6f8aa2ad0c47ce0218c64f19478bb73186 | |
parent | 276284fd2e6fdb564db7152814e343ab783d7325 [diff] [blame] |
Fix typo
diff --git a/library/bignum.c b/library/bignum.c index 9aed59c..4194618 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -590,7 +590,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. */