edit: Trim trailing tab in output
print_plane() ends its output with '\t' instead of '\n'. Next is a prompt, which supplies the missing newline (see pr_id()). Ugly, clean up. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
fbaaed0322
commit
827e2e4cc0
2 changed files with 2 additions and 2 deletions
|
@ -262,7 +262,7 @@ print_plane(struct plnstr *plane)
|
||||||
pr("Range <r>: %d\t\t", plane->pln_range);
|
pr("Range <r>: %d\t\t", plane->pln_range);
|
||||||
pr("Flags <f>: %d\n", plane->pln_flags);
|
pr("Flags <f>: %d\n", plane->pln_flags);
|
||||||
pr("Ship <s>: %d\t\t", plane->pln_ship);
|
pr("Ship <s>: %d\t\t", plane->pln_ship);
|
||||||
pr("Land Unit <y>: %d\t", plane->pln_land);
|
pr("Land Unit <y>: %d\n", plane->pln_land);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue