Fix argument order for ucisprop (coverity)

This commit is contained in:
Howard Chu 2015-01-13 18:20:36 +00:00
parent 2cf553563b
commit 9710c2b17b

View File

@ -123,5 +123,5 @@ _ure_matches_properties(unsigned long props, ucs4_t c)
}
}
return ucisprop( mask1, mask2, c );
return ucisprop( c, mask1, mask2 );
}