Fix inconsistent const usage in FcConfigCompareValue
This commit is contained in:
parent
c647f6f1e4
commit
ca4339b8bb
|
@ -483,10 +483,12 @@ FcConfigPromote (FcValue v, FcValue u)
|
|||
}
|
||||
|
||||
FcBool
|
||||
FcConfigCompareValue (FcValue m,
|
||||
FcConfigCompareValue (const FcValue m_o,
|
||||
FcOp op,
|
||||
FcValue v)
|
||||
const FcValue v_o)
|
||||
{
|
||||
FcValue m = m_o;
|
||||
FcValue v = v_o;
|
||||
FcBool ret = FcFalse;
|
||||
|
||||
m = FcConfigPromote (m, v);
|
||||
|
|
Loading…
Reference in New Issue