mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
* src/treesit.c (treesit_debug_print_parser_list): Fix format string.
This commit is contained in:
parent
bed38ded73
commit
e0d3f74395
@ -521,7 +521,7 @@ treesit_debug_print_parser_list (char *msg, Lisp_Object parser)
|
||||
for (int idx = 0; idx < len; idx++)
|
||||
{
|
||||
TSRange range = ranges[idx];
|
||||
printf (" [%d, %d)", range.start_byte, range.end_byte);
|
||||
printf (" [%"PRIu32", %"PRIu32")", range.start_byte, range.end_byte);
|
||||
|
||||
/* if (!parser->need_reparse) */
|
||||
/* { */
|
||||
|
Loading…
Reference in New Issue
Block a user