summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2006-09-13 10:15:59 +0000
committerJan Beulich <jbeulich@novell.com>2006-09-13 10:15:59 +0000
commit402983dc3caeaf33b31275f00e75824ad67f1a16 (patch)
tree0e303c9a5f9d340fe0805ddf4fd22f82f8030588
parent545cf3ff0cadbe79c2bbc6b25f4ef4fba614aeae (diff)
downloadbinutils-redhat-402983dc3caeaf33b31275f00e75824ad67f1a16.tar.gz
2006-09-13 Jan Beulich <jbeulich@novell.com>
* input-file.c (input_file_give_next_buffer): Demote as_bad to as_warn.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/input-file.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 6d72a47982..b6c256286f 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-13 Jan Beulich <jbeulich@novell.com>
+
+ * input-file.c (input_file_give_next_buffer): Demote as_bad to
+ as_warn.
+
2006-09-13 Alan Modra <amodra@bigpond.net.au>
PR gas/3165
diff --git a/gas/input-file.c b/gas/input-file.c
index ec36a42696..91ec530922 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;