fcformat: fix compiler warnings with clang on Android

fcformat.c:762:44: warning: expression which evaluates to zero treated as a null pointer constant of type 'FcChar8 *' (aka 'unsigned char *') [-Wnon-literal-null-conversion]
                if (!FcNameUnparseValue (buf, &l->value, '\0'))
                                                         ^~~~
fcformat.c:769:38: warning: expression which evaluates to zero treated as a null pointer constant of type 'FcChar8 *' (aka 'unsigned char *') [-Wnon-literal-null-conversion]
            FcNameUnparseValueList (buf, l, '\0');
                                            ^~~~
This commit is contained in:
Tim-Philipp Müller 2020-12-31 13:15:24 +00:00 committed by Akira TAGOH
parent bd7123ac41
commit 8657c081e9
1 changed files with 2 additions and 2 deletions

View File

@ -759,14 +759,14 @@ interpret_simple (FcFormatContext *c,
}
if (l && idx == 0)
{
if (!FcNameUnparseValue (buf, &l->value, '\0'))
if (!FcNameUnparseValue (buf, &l->value, NULL))
return FcFalse;
}
else goto notfound;
}
else if (l)
{
FcNameUnparseValueList (buf, l, '\0');
FcNameUnparseValueList (buf, l, NULL);
}
else
{