aboutsummaryrefslogtreecommitdiff
path: root/gas/messages.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1992-09-10 16:25:31 +0000
committerIan Lance Taylor <ian@airs.com>1992-09-10 16:25:31 +0000
commitb1520b1f70592852ff37cec566ff58de9c78c88c (patch)
tree610e612fac2d521880d0361893ba3d20e53fa0c8 /gas/messages.c
parent2dd00294b93df134d3d6593871843a49baa211eb (diff)
downloadgdb-b1520b1f70592852ff37cec566ff58de9c78c88c.zip
gdb-b1520b1f70592852ff37cec566ff58de9c78c88c.tar.gz
gdb-b1520b1f70592852ff37cec566ff58de9c78c88c.tar.bz2
Thu Sep 10 09:23:15 1992 Ian Lance Taylor (ian@cygnus.com)
* input-scrub.c (input_scrub_push): call input_file_begin, not input_scrub_begin. messages.c (as_perror): print ": " between the passed in error and the strerror, like perror does.
Diffstat (limited to 'gas/messages.c')
-rw-r--r--gas/messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/messages.c b/gas/messages.c
index d5c9231..0b56527 100644
--- a/gas/messages.c
+++ b/gas/messages.c
@@ -123,7 +123,7 @@ char *filename;
as_where();
fprintf(stderr, gripe, filename);
- fprintf(stderr, "%s.\n", strerror(errno));
+ fprintf(stderr, ": %s\n", strerror(errno));
errno = 0; /* After reporting, clear it. */
} /* as_perror() */