Fix some warnings related to format strings.

This commit is contained in:
John "Elwin" Edwards 2021-04-30 20:48:30 -04:00
parent 3ac49bdaa0
commit ca9e48d5f6
8 changed files with 8 additions and 8 deletions

View file

@ -3102,7 +3102,7 @@ rs_print_thing(FILE *outf, struct thing *thing, char *prefix, int list, int inde
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);