add missing ' in error message.
This commit is contained in:
parent
a6230559f1
commit
8cdd61e846
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ void handle_unsupported(svg_parser& parser, T const& ar, char const* name)
|
||||||
{
|
{
|
||||||
if (e == element)
|
if (e == element)
|
||||||
{
|
{
|
||||||
parser.err_handler().on_error(std::string("Unsupported:\"") + name);
|
parser.err_handler().on_error(std::string("Unsupported:'") + name + "'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue