diff options
author | Ran Benita <ran234@gmail.com> | 2012-09-21 14:44:17 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2012-09-24 09:08:53 +1000 |
commit | fcd202909bd558074885c8a35400e180646e115b (patch) | |
tree | 8e1f203c01fa0854f3c859668bda52a4f792dc4f /test/print-compiled-keymap.c | |
parent | bf19408078824f96d2c265ad15e4ff12505166cc (diff) |
Don't use xkbcommon-compat names in internal code
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'test/print-compiled-keymap.c')
-rw-r--r-- | test/print-compiled-keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/print-compiled-keymap.c b/test/print-compiled-keymap.c index 34be4d4..95bd85a 100644 --- a/test/print-compiled-keymap.c +++ b/test/print-compiled-keymap.c @@ -87,7 +87,7 @@ main(int argc, char *argv[]) goto err_ctx; } - dump = xkb_map_get_as_string(keymap); + dump = xkb_keymap_get_as_string(keymap); if (!dump) { fprintf(stderr, "Couldn't get the keymap string\n"); goto err_map; @@ -98,7 +98,7 @@ main(int argc, char *argv[]) ret = EXIT_SUCCESS; free(dump); err_map: - xkb_map_unref(keymap); + xkb_keymap_unref(keymap); err_ctx: xkb_context_unref(ctx); err_out: |