mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-06-01 09:02:08 +00:00
Correct some spaces in the type dump output.
This commit is contained in:
parent
cf05f65596
commit
0ff6e8a471
1 changed files with 2 additions and 2 deletions
|
@ -464,7 +464,7 @@ dump_qfo_types (qfo_t *qfo, int base_address)
|
||||||
? "invalid type"
|
? "invalid type"
|
||||||
: pr_type_name[type->t.type]);
|
: pr_type_name[type->t.type]);
|
||||||
if (type->t.type == ev_func) {
|
if (type->t.type == ev_func) {
|
||||||
printf ("%5x %d", type->t.func.return_type,
|
printf (" %4x %d", type->t.func.return_type,
|
||||||
count = type->t.func.num_params);
|
count = type->t.func.num_params);
|
||||||
if (count < 0)
|
if (count < 0)
|
||||||
count = ~count; //ones complement
|
count = ~count; //ones complement
|
||||||
|
@ -472,7 +472,7 @@ dump_qfo_types (qfo_t *qfo, int base_address)
|
||||||
printf (" %x", type->t.func.param_types[i]);
|
printf (" %x", type->t.func.param_types[i]);
|
||||||
} else if (type->t.type == ev_pointer
|
} else if (type->t.type == ev_pointer
|
||||||
|| type->t.type == ev_field) {
|
|| type->t.type == ev_field) {
|
||||||
printf (" %x", type->t.fldptr.aux_type);
|
printf (" %4x", type->t.fldptr.aux_type);
|
||||||
}
|
}
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue