diff xrogue/state.c @ 307:32bc72dcbf4f

Fix some warnings related to format strings.
author John "Elwin" Edwards
date Fri, 30 Apr 2021 20:48:30 -0400
parents e52a8a7ad4c5
children 827441d05b3e
line wrap: on
line diff
--- a/xrogue/state.c	Sat Apr 17 15:41:12 2021 -0400
+++ b/xrogue/state.c	Fri Apr 30 20:48:30 2021 -0400
@@ -3102,7 +3102,7 @@
     fprintf(outf,"%st_flags    : ", prefix);
 
     for(i = 0; i<16; i++)
-        fprintf(outf,"%X ",thing->t_flags[i]);
+        fprintf(outf,"%lX ",thing->t_flags[i]);
     fprintf(outf,"\n");
 
     fprintf(outf,"%st_pack     : %p\n",prefix,thing->t_pack);