Make param/format specifier mapping easier to read.

Just a bit of white space.
This commit is contained in:
Bill Currie 2012-12-16 12:00:39 +09:00
parent 2317811f2b
commit aa14271764
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ dump_methods (progs_t *pr, pr_method_list_t *methods, int class)
types = PR_GetString (pr, method->method_types); types = PR_GetString (pr, method->method_types);
else else
types = "<invalid string>"; types = "<invalid string>";
printf (" %c%s %d @ %x %s\n", mark, sel_id, printf (" %c%s %d @ %x %s\n",
method->method_imp, mark, sel_id, method->method_imp,
PR_SetPointer (pr, method), types); PR_SetPointer (pr, method), types);
method++; method++;
} }