summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2013-04-06 18:13:04 -0400
committerMark H Weaver <mhw@netris.org>2013-04-06 18:13:04 -0400
commit3e5a164ac3d93a1a43c0e81842d0583fe0031b84 (patch)
treebb261d656661106dab9196c6879b97df7947e71c
parenta16d4e82e949954805bf2cd42cfbb519fcf4012d (diff)
downloadguile-3e5a164ac3d93a1a43c0e81842d0583fe0031b84.tar.gz
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.
-rw-r--r--test-suite/standalone/test-scm-c-bind-keyword-arguments.c14
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);
}