summaryrefslogtreecommitdiff
path: root/src/load.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2022-02-26 18:30:00 -0500
committerPaul Smith <psmith@gnu.org>2022-02-27 18:01:13 -0500
commit236589642ed15c4231f618433d0a0daa52b9fa79 (patch)
tree4847ddd7456c033e8ab655dca5b2f232ad0bd136 /src/load.c
parentcb9ac2b0ccd02ced98b32e66952b98b6d40dfe9d (diff)
downloadmake-git-236589642ed15c4231f618433d0a0daa52b9fa79.tar.gz
Remove extraneous characters from fatal() calls
The fatal() method adds ". Stop.\n" to every message. * src/amiga.c (MyExecute): Remove newline from fatal() message. * src/job.c (<various>): Ditto. * src/file.c (snap_deps): Remove "." from fatal() message. * src/main.c (main): Ditto. * src/load.c: Ditto. * tests/scripts/targets/NOTINTERMEDIATE: Fix expected output.
Diffstat (limited to 'src/load.c')
-rw-r--r--src/load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/load.c b/src/load.c
index e4f551a3..f86027d3 100644
--- a/src/load.c
+++ b/src/load.c
@@ -253,7 +253,7 @@ load_file (const floc *flocp, const char **ldname UNUSED, int noerror)
{
if (! noerror)
O (fatal, flocp,
- _("The 'load' operation is not supported on this platform."));
+ _("The 'load' operation is not supported on this platform"));
return 0;
}
@@ -261,7 +261,7 @@ load_file (const floc *flocp, const char **ldname UNUSED, int noerror)
void
unload_file (const char *name UNUSED)
{
- O (fatal, NILF, "INTERNAL: Cannot unload when load is not supported!");
+ O (fatal, NILF, "INTERNAL: Cannot unload when load is not supported");
}
#endif /* MAKE_LOAD */