(cpp_push_buffer): Include filename in error message.

From-SVN: r9901
This commit is contained in:
Richard Kenner 1995-06-08 12:02:22 -04:00
parent 8790738797
commit 27f3162f4b
1 changed files with 1 additions and 1 deletions

View File

@ -1897,7 +1897,7 @@ cpp_push_buffer (pfile, buffer, length)
#ifdef STATIC_BUFFERS
register cpp_buffer *buf = CPP_BUFFER (pfile);
if (buf == pfile->buffer_stack)
fatal ("macro or `#include' recursion too deep");
fatal ("%s: macro or `#include' recursion too deep", buf->fname);
buf--;
bzero ((char *) buf, sizeof (cpp_buffer));
CPP_BUFFER (pfile) = buf;