aboutsummaryrefslogtreecommitdiff
path: root/crypto/base64
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-07-17 10:33:16 -0700
committerAdam Langley <agl@chromium.org>2014-07-17 10:33:16 -0700
commit904a32e97582475e011a312dfaaac100c8f2df5a (patch)
tree263a4eda90ef0c9a77cc706b0ad8e787ca1d510d /crypto/base64
parent7b35b58ae671ac7da66c3407923c3b032fce22c2 (diff)
downloadboringssl-904a32e97582475e011a312dfaaac100c8f2df5a.zip
boringssl-904a32e97582475e011a312dfaaac100c8f2df5a.tar.gz
boringssl-904a32e97582475e011a312dfaaac100c8f2df5a.tar.bz2
Touchup a couple of blank lines from 7b35b58a.
Change-Id: I5ed3aaa5d57e5350c4a3779e501bf5fc143997fb
Diffstat (limited to 'crypto/base64')
-rw-r--r--crypto/base64/base64_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/base64/base64_test.c b/crypto/base64/base64_test.c
index ea0d3d1..992f13b 100644
--- a/crypto/base64/base64_test.c
+++ b/crypto/base64/base64_test.c
@@ -18,6 +18,7 @@
#include <openssl/base64.h>
#include <openssl/err.h>
+
typedef struct {
const char *decoded;
const char *encoded;
@@ -33,6 +34,7 @@ static const TEST_VECTOR test_vectors[] = {
{ "fooba", "Zm9vYmE=" },
{ "foobar", "Zm9vYmFy" },
};
+
static const size_t kNumTests = sizeof(test_vectors) / sizeof(test_vectors[0]);
static int test_encode() {