Don't call printf with no format string.
This commit is contained in:
parent
a5aaf7609c
commit
5e8a8e2ecf
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user