Skip to content

Commit 186a791

Browse files
authored
Merge pull request #193 from pkern/clang-format
login/base64.h: Update using clang-format
2 parents dc6eb8a + d30b229 commit 186a791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

login/base64.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// Base64 needs 4 bytes for every 3 bytes of input (+ padding + NULL byte)
2121
// NOTE: Caller is responsible for protecting against integer overflow.
2222
#define ENCODED_BUFSIZE(n) ((((n) + 2) / 3) * 4 + 1)
23-
#define DECODED_BUFSIZE(n) ((((n)*3) / 4))
23+
#define DECODED_BUFSIZE(n) ((((n) * 3) / 4))
2424

2525
size_t base64url_encode(const uint8_t* src, size_t src_len, uint8_t* dst,
2626
size_t dst_len);

0 commit comments

Comments
 (0)