From aa14271764a82e31638ac56b44f15a9021f84458 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Dec 2012 12:00:39 +0900 Subject: [PATCH] Make param/format specifier mapping easier to read. Just a bit of white space. --- tools/qfcc/source/dump_modules.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/dump_modules.c b/tools/qfcc/source/dump_modules.c index 404f85172..d55195aaa 100644 --- a/tools/qfcc/source/dump_modules.c +++ b/tools/qfcc/source/dump_modules.c @@ -65,8 +65,8 @@ dump_methods (progs_t *pr, pr_method_list_t *methods, int class) types = PR_GetString (pr, method->method_types); else types = ""; - printf (" %c%s %d @ %x %s\n", mark, sel_id, - method->method_imp, + printf (" %c%s %d @ %x %s\n", + mark, sel_id, method->method_imp, PR_SetPointer (pr, method), types); method++; }