Fix newline in warning about deprecated config includes
This commit is contained in:
parent
2d9ad5434b
commit
3a5e9bc75d
|
@ -2080,7 +2080,7 @@ FcParseInclude (FcConfigParse *parse)
|
||||||
{
|
{
|
||||||
attr = FcConfigGetAttribute (parse, "deprecated");
|
attr = FcConfigGetAttribute (parse, "deprecated");
|
||||||
if (attr && FcConfigLexBool (parse, (FcChar8 *) attr) == FcTrue)
|
if (attr && FcConfigLexBool (parse, (FcChar8 *) attr) == FcTrue)
|
||||||
FcConfigMessage (parse, FcSevereWarning, "reading configurations from %s is deprecated.\n", s);
|
FcConfigMessage (parse, FcSevereWarning, "reading configurations from %s is deprecated.", s);
|
||||||
}
|
}
|
||||||
FcStrBufDestroy (&parse->pstack->str);
|
FcStrBufDestroy (&parse->pstack->str);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue