summaryrefslogtreecommitdiff
path: root/tests/test_input.c
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@googlemail.com>2012-10-27 18:32:43 +0200
committerDavid Herrmann <dh.herrmann@googlemail.com>2012-10-27 18:32:43 +0200
commit9d2018f52184709bc72b58126fa23354c3316c09 (patch)
tree5340c1785cf21a2defff5cc84e036417ea2bf4f6 /tests/test_input.c
parent6e05334695d75c4a772ef22129e541fa8108bdb3 (diff)
build: fix "make check" build failures
I forgot again to keep these up to date. The conf-layer updates broke them horribly. However, we now build them correctly without kmscon-core by including all required layers directly. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'tests/test_input.c')
-rw-r--r--tests/test_input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_input.c b/tests/test_input.c
index 74a0916..dba1bb8 100644
--- a/tests/test_input.c
+++ b/tests/test_input.c
@@ -176,9 +176,9 @@ static void print_help()
struct conf_option options[] = {
TEST_OPTIONS,
- CONF_OPTION_STRING(0, "xkb-layout", NULL, &input_conf.xkb_layout, ""),
- CONF_OPTION_STRING(0, "xkb-variant", NULL, &input_conf.xkb_variant, ""),
- CONF_OPTION_STRING(0, "xkb-options", NULL, &input_conf.xkb_options, ""),
+ CONF_OPTION_STRING(0, "xkb-layout", &input_conf.xkb_layout, ""),
+ CONF_OPTION_STRING(0, "xkb-variant", &input_conf.xkb_variant, ""),
+ CONF_OPTION_STRING(0, "xkb-options", &input_conf.xkb_options, ""),
};
int main(int argc, char **argv)