Skip to content

Commit 28dd3f8

Browse files
committed
test_morton.c: fix misplaced comma
1 parent 0593b4f commit 28dd3f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_morton.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ int test_morton2d_to_cartesian(void)
188188
for (int i = 0; i < size; i++) {
189189
TEST_ASSERT_MSG(
190190
xin[i] == xout[i] && yin[i] == yout[i],
191-
"i=%d, xin[i]=%"PRIu64", xout[i]=%"PRIu64"",
191+
"i=%d, xin[i]=%"PRIu64", xout[i]=%"PRIu64", "
192192
"yin[i]=%"PRIu64", yout[i]=%"PRIu64,
193193
i, xin[i], xout[i], yin[i], yout[i]);
194194
}

0 commit comments

Comments
 (0)