diff options
author | Jan Beulich <jbeulich@novell.com> | 2006-09-13 10:15:59 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2006-09-13 10:15:59 +0000 |
commit | e5d4a5a6dfb58d27b57c7e871906c9b8f81a07f5 (patch) | |
tree | 532b61ade373bbb99e33a39549789115376a266b /gas/input-file.c | |
parent | 1a1219cba35fb0e6a08c91224160be3dc6663da6 (diff) | |
download | gdb-e5d4a5a6dfb58d27b57c7e871906c9b8f81a07f5.zip gdb-e5d4a5a6dfb58d27b57c7e871906c9b8f81a07f5.tar.gz gdb-e5d4a5a6dfb58d27b57c7e871906c9b8f81a07f5.tar.bz2 |
2006-09-13 Jan Beulich <jbeulich@novell.com>
* input-file.c (input_file_give_next_buffer): Demote as_bad to
as_warn.
Diffstat (limited to 'gas/input-file.c')
-rw-r--r-- | gas/input-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/input-file.c b/gas/input-file.c index ec36a42..91ec530 100644 --- a/gas/input-file.c +++ b/gas/input-file.c @@ -246,7 +246,7 @@ input_file_give_next_buffer (char *where /* Where to place 1st character of new else { if (fclose (f_in)) - as_bad (_("can't close %s: %s"), file_name, xstrerror (errno)); + as_warn (_("can't close %s: %s"), file_name, xstrerror (errno)); f_in = (FILE *) 0; return_value = 0; |