diff options
-rw-r--r-- | test-suite/standalone/test-scm-c-bind-keyword-arguments.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test-suite/standalone/test-scm-c-bind-keyword-arguments.c b/test-suite/standalone/test-scm-c-bind-keyword-arguments.c index a42b0d97f..6fcf82180 100644 --- a/test-suite/standalone/test-scm-c-bind-keyword-arguments.c +++ b/test-suite/standalone/test-scm-c-bind-keyword-arguments.c @@ -65,13 +65,13 @@ test_invalid_keyword (void *data) SCM arg_foo, arg_bar; scm_c_bind_keyword_arguments ("test", - scm_list_n (k_foo, SCM_EOL, - SCM_INUM0, SCM_INUM1, - SCM_UNDEFINED), - SCM_ALLOW_OTHER_KEYS, - k_foo, &arg_foo, - k_bar, &arg_bar, - SCM_UNDEFINED); + scm_list_n (k_foo, SCM_EOL, + SCM_INUM0, SCM_INUM1, + SCM_UNDEFINED), + SCM_ALLOW_OTHER_KEYS, + k_foo, &arg_foo, + k_bar, &arg_bar, + SCM_UNDEFINED); assert (0); } |