Index: tests/array-collections/c-dependent.cfa
===================================================================
--- tests/array-collections/c-dependent.cfa	(revision efa8439ac439de6002beedb6d6dd84e54637ce0f)
+++ tests/array-collections/c-dependent.cfa	(revision 16d9c3ad11804ba6611afddc59feffaa040594e1)
@@ -5,6 +5,6 @@
 }
 
-void f__bound_ptr_allow( int n, float a[n] ) {
-    printf( "bound_ptr_allow %d: %.1f %.1f %.1f\n", n, a[0], a[1], a[2] );
+void f__bound_ptr_allow( size_t n, float a[n] ) {
+    printf( "bound_ptr_allow %zd: %.1f %.1f %.1f\n", n, a[0], a[1], a[2] );
 }
 void bound_ptr_allow() {
@@ -14,6 +14,6 @@
 }
 
-void f__bound_ar_allow( int n, float a[][n + 1] ) {
-    printf( "bound_ar_allow %d:\n", n );
+void f__bound_ar_allow( size_t n, float a[][n + 1] ) {
+    printf( "bound_ar_allow %zd:\n", n );
     printf( "%.1f %.1f %.1f\n", a[0][0], a[0][1], a[0][2] );
     printf( "%.1f %.1f %.1f\n", a[1][0], a[1][1], a[1][2] );
