Fix newline in warning about deprecated config includes

This commit is contained in:
Marius Tolzmann 2012-06-21 21:01:09 +02:00 committed by Akira TAGOH
parent 2d9ad5434b
commit 3a5e9bc75d
1 changed files with 1 additions and 1 deletions

View File

@ -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);