Found from running make check:
test_walk.c:78:26: warning: format specifies type 'wint_t' (aka 'int') but the argument has type 'AlphaChar' (aka 'unsigned int') [-Wformat]
printf ("'%lc'", walkables[i]);
~~~ ^~~~~~~~~~~~
%c
This could be fix by changing to %c instead?
Found from running
make check:This could be fix by changing to
%cinstead?