1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Fix indentation in test-scm-c-bind-keyword-arguments.c.

* test-suite/standalone/test-scm-c-bind-keyword-arguments.c
  (test_invalid_keyword): Fix indentation.
This commit is contained in:
Mark H Weaver 2013-04-06 18:13:04 -04:00
parent a16d4e82e9
commit 3e5a164ac3

View file

@ -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);
}