forgot to remove the useless '\n' from some info() lines

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7735 4a71c877-e1ca-e34f-864e-861f7616d084
master
Buginator 2009-06-14 00:51:48 +00:00 committed by Git SVN Gateway
parent 11ab9125ad
commit c270a5fe16
1 changed files with 3 additions and 3 deletions

View File

@ -960,7 +960,7 @@ int main(int argc, char *argv[])
}
else
{
info("(global) mod (%s) is enabled\n", modname);
info("(global) mod (%s) is enabled", modname);
}
}
// check campaign mods
@ -980,7 +980,7 @@ int main(int argc, char *argv[])
}
else
{
info("mod_ca (%s) is enabled\n", modname);
info("mod_ca (%s) is enabled", modname);
}
}
// check multiplay mods
@ -1000,7 +1000,7 @@ int main(int argc, char *argv[])
}
else
{
info("mod_mp (%s) is enabled\n", modname);
info("mod_mp (%s) is enabled", modname);
}
}
}