commit | 80470627e2e7b9310eefbaa3aafa10930f64bd51 | [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:43:02 2019 +0000 |
tree | 0a6e8d7241b4e7849f094b2ed35c0d57343cc10d | |
parent | 04dadb73fdbf9556b3cd3f72524d801bd91aa9cc [diff] [blame] |
Fix typo
diff --git a/library/bignum.c b/library/bignum.c index 50b75be..02086c0 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. */