aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-06-19 11:17:51 +0100
committerYann Herklotz <git@yannherklotz.com>2020-06-19 11:17:51 +0100
commit04dcea14217395ee09915aafb4532a6dd495fa53 (patch)
tree92f8b63f62e8a2c77748110a89b9e22a6f7b888c /test
parent63e84ca844c04562e05c1aae2606526d7288675f (diff)
downloadvericert-04dcea14217395ee09915aafb4532a6dd495fa53.tar.gz
vericert-04dcea14217395ee09915aafb4532a6dd495fa53.zip
Add CHstone
Diffstat (limited to 'test')
-rw-r--r--test/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/matrix.c b/test/matrix.c
index d612734..2bb17e7 100644
--- a/test/matrix.c
+++ b/test/matrix.c
@@ -1,6 +1,6 @@
#define N 4
-void matrix_multiply(int first[][N], int second[][N], int multiply[][N]) {
+void matrix_multiply(int first[N][N], int second[N][N], int multiply[N][N]) {
int sum = 0;
for (int c = 0; c < N; c++) {
for (int d = 0; d < N; d++) {