aboutsummaryrefslogtreecommitdiff
path: root/ld/ldlex.l
diff options
context:
space:
mode:
Diffstat (limited to 'ld/ldlex.l')
-rw-r--r--ld/ldlex.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/ldlex.l b/ld/ldlex.l
index ef1275b..29445c7 100644
--- a/ld/ldlex.l
+++ b/ld/ldlex.l
@@ -429,7 +429,7 @@ lex_push_file (file, name)
{
if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
{
- einfo("%F:includes nested too deeply");
+ einfo("%F:includes nested too deeply\n");
}
file_name_stack[include_stack_ptr] = name;
include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
@@ -489,7 +489,7 @@ lex_redirect (string)
yy_init = 0 ;
if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
{
- einfo("%F: macros nested too deeply");
+ einfo("%F: macros nested too deeply\n");
}
file_name_stack[include_stack_ptr] = "redirect";
include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
@@ -592,7 +592,7 @@ comment()
if ( c == EOF )
{
- einfo( "%F%P :EOF in comment");
+ einfo( "%F%P :EOF in comment\n");
break;
}
}