1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Removed unnecessary \n's in calls to Error().

git-svn-id: svn://svn.cc65.org/cc65/trunk@5008 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-05-01 18:00:51 +00:00
parent 845ad64633
commit c142061ca5

View File

@ -388,7 +388,7 @@ int main (int argc, char* argv [])
} else {
/* Filename. Check if we already had one */
if (InputName) {
Error ("Don't know what to do with `%s'\n", Arg);
Error ("Don't know what to do with `%s'", Arg);
} else {
InputName = Arg;
}
@ -400,7 +400,7 @@ int main (int argc, char* argv [])
/* Do we have an input file? */
if (InputName == 0) {
Error ("No input file\n");
Error ("No input file");
}
/* Generate the name of the output file if none was specified */