diff options
Diffstat (limited to 'console-client/xkb/compose.c')
-rw-r--r-- | console-client/xkb/compose.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/console-client/xkb/compose.c b/console-client/xkb/compose.c index fb3f07ca..17f30014 100644 --- a/console-client/xkb/compose.c +++ b/console-client/xkb/compose.c @@ -28,7 +28,7 @@ #include <fcntl.h> #include <unistd.h> #include <locale.h> -#include <assert.h> +#include <assert-backtrace.h> /* Tokens that can be recognised by the scanner. */ enum tokentype @@ -427,8 +427,8 @@ map_iterate(const char *map_path, map_callback action, void *context) size_t buffer_size = 0; size_t line_length = 0; - assert (map_path != NULL); - assert (action != NULL); + assert_backtrace (map_path != NULL); + assert_backtrace (action != NULL); map = fopen (map_path, "r"); |