Commit 54925c20 by Zack Weinberg Committed by Zack Weinberg

cpplib.c (handle_directive): Print non-NUL-terminated string with %.*s.

	* cpplib.c (handle_directive): Print non-NUL-terminated string
	with %.*s.

From-SVN: r34514
parent ff164a61
2000-06-13 Zack Weinberg <zack@wolery.cumb.org>
* cpplib.c (handle_directive): Print non-NUL-terminated string
with %.*s.
2000-06-12 Michael Meissner <meissner@redhat.com>
* ifcvt.c (dead_or_predicable): Don't do conditional execution
......
......@@ -244,7 +244,8 @@ _cpp_handle_directive (pfile)
assembler pseudo-ops. Don't complain about invalid directives
in skipped conditional groups (6.10 p4). */
if (!pfile->skipping && !CPP_OPTION (pfile, lang_asm))
cpp_error (pfile, "invalid preprocessing directive #%s", ident);
cpp_error (pfile, "invalid preprocessing directive #%.*s",
(int) len, ident);
return 0;
}
/* And anything else means the # wasn't a directive marker. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment