summaryrefslogtreecommitdiff
path: root/test-suite/standalone/test-srfi-4.c
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/standalone/test-srfi-4.c')
-rw-r--r--test-suite/standalone/test-srfi-4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/standalone/test-srfi-4.c b/test-suite/standalone/test-srfi-4.c
index 3c7570b78..82897df27 100644
--- a/test-suite/standalone/test-srfi-4.c
+++ b/test-suite/standalone/test-srfi-4.c
@@ -40,7 +40,7 @@ test_writable_elements ()
size_t len;
ssize_t inc;
scm_t_array_handle h;
- scm_t_uint32 *elts = scm_u32vector_writable_elements (v, &h, &len, &inc);
+ uint32_t *elts = scm_u32vector_writable_elements (v, &h, &len, &inc);
assert (len == 4);
assert (inc == 1);
assert (elts[0] == 1);