summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Beurdouche <bbeurdouche@mozilla.com>2021-08-24 20:27:41 +0200
committerBenjamin Beurdouche <bbeurdouche@mozilla.com>2021-08-24 20:27:41 +0200
commit2e95180abff59aeb485359af9924474c0e2db60e (patch)
tree5e8c08e8d45c5e0700bec44d53379354e407daab
parentf5d5a522b7b8743f51516359149d373c706d8428 (diff)
downloadnss-hg-2e95180abff59aeb485359af9924474c0e2db60e.tar.gz
Formatting for lib/util
-rw-r--r--lib/util/nssb64d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/nssb64d.c b/lib/util/nssb64d.c
index c7346d0a8..ebfb154f9 100644
--- a/lib/util/nssb64d.c
+++ b/lib/util/nssb64d.c
@@ -110,7 +110,7 @@ ct_u8_in_range(unsigned char x, unsigned char a, unsigned char b)
* The same is true if we perform the shift after the AND
* ((a - x - 1) & (x - b - 1)) >> 8.
*/
- return (unsigned char) (((a - x - 1) & (x - b - 1)) >> 8);
+ return (unsigned char)(((a - x - 1) & (x - b - 1)) >> 8);
}
/* Convert a base64 code [A-Za-z0-9+/] to its value in {1, 2, ..., 64}.