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:
parent
845ad64633
commit
c142061ca5
1 changed files with 2 additions and 2 deletions
|
@ -388,7 +388,7 @@ int main (int argc, char* argv [])
|
||||||
} else {
|
} else {
|
||||||
/* Filename. Check if we already had one */
|
/* Filename. Check if we already had one */
|
||||||
if (InputName) {
|
if (InputName) {
|
||||||
Error ("Don't know what to do with `%s'\n", Arg);
|
Error ("Don't know what to do with `%s'", Arg);
|
||||||
} else {
|
} else {
|
||||||
InputName = Arg;
|
InputName = Arg;
|
||||||
}
|
}
|
||||||
|
@ -400,7 +400,7 @@ int main (int argc, char* argv [])
|
||||||
|
|
||||||
/* Do we have an input file? */
|
/* Do we have an input file? */
|
||||||
if (InputName == 0) {
|
if (InputName == 0) {
|
||||||
Error ("No input file\n");
|
Error ("No input file");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Generate the name of the output file if none was specified */
|
/* Generate the name of the output file if none was specified */
|
||||||
|
|
Loading…
Add table
Reference in a new issue