From 952a02eb23fc7d200a7da29fbafd4167cef466f7 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 7 Feb 2011 21:31:37 +0900 Subject: [PATCH] Make print_type() output a newline. --- tools/qfcc/source/type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index 4d8bad967..4119cb204 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -467,7 +467,7 @@ print_type (type_t *type) { dstring_t *str = dstring_newstr (); print_type_str (str, type); - printf ("%s", str->str); + printf ("%s\n", str->str); dstring_delete (str); }