mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Make print_type() output a newline.
This commit is contained in:
parent
a28ac636a7
commit
952a02eb23
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue