Fix pedantic warnings

With the latest build system, somehow -Wpedantic got turned on.  This is
reasonable given that we expect this code to compile against a number of
targets.  Fix void issues.

void function() changes to void function(void)

Change-Id: I89a2dcbcd88c7d163ffdfb67927f71b39cb7aa6f
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/tests/base64_test.c b/tests/base64_test.c
index 6fc7825..9912b1e 100644
--- a/tests/base64_test.c
+++ b/tests/base64_test.c
@@ -12,7 +12,7 @@
 	"f", "fo", "foo", "foob", "fooba", "foobar",
 };
 
-void test_base64_encode_good()
+void test_base64_encode_good(void)
 {
 	int32_t encoded_len = 0;
 	for (long unsigned int i = 0;
@@ -35,7 +35,7 @@
 	"f", "f", "fo", "fo", "foo",
 };
 
-void test_base64_decode_good()
+void test_base64_decode_good(void)
 {
 	for (long unsigned int i = 0;
 	     i < sizeof(good_decode_inputs) / sizeof(good_decode_inputs[0]);