Fix some warnings related to format strings.
This commit is contained in:
parent
3ac49bdaa0
commit
ca9e48d5f6
8 changed files with 8 additions and 8 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue