Make print_type() output a newline.

This commit is contained in:
Bill Currie 2011-02-07 21:31:37 +09:00
parent a28ac636a7
commit 952a02eb23
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}