diff --git a/sha-256.h b/sha-256.h
index 37d208f..47f06eb 100644
--- a/sha-256.h
+++ b/sha-256.h
@@ -1 +1 @@
-void calc_sha_256(uint8_t hash[32], const void * input, size_t len);
+void calc_sha_256(uint8_t hash[32], const void *input, size_t len);
diff --git a/test.c b/test.c
index 871f2ad..aef78a6 100644
--- a/test.c
+++ b/test.c
@@ -41,7 +41,7 @@ static const struct string_vector STRING_VECTORS[] = {
 	}
 };
 
-#define LARGE_MESSAGES 0
+#define LARGE_MESSAGES 1
 
 static uint8_t data1[] = { 0xbd };
 static uint8_t data2[] = { 0xc9, 0x8c, 0x8e, 0x55 };