aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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() {