Don't call printf with no format string.

This commit is contained in:
Kris Kennaway 2000-07-10 05:24:02 +00:00
parent 19a32101dd
commit c7664a87e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62869

View file

@ -126,13 +126,13 @@ phaser()
{
if (damaged(COMPUTER))
{
printf(Device[COMPUTER].name);
printf("%s", Device[COMPUTER].name);
manual++;
}
else
if (damaged(SRSCAN))
{
printf(Device[SRSCAN].name);
printf("%s", Device[SRSCAN].name);
manual++;
}
if (manual)