fix a stupic bug

This commit is contained in:
Hongze Cheng 2022-03-29 08:38:42 +00:00
parent 1642a2d802
commit f0e6b6ede6
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ static inline int metaUidCmpr(const void *arg1, int len1, const void *arg2, int
ASSERT(len2 == sizeof(tb_uid_t));
uid1 = ((tb_uid_t *)arg1)[0];
uid2 = ((tb_uid_t *)arg2)[1];
uid2 = ((tb_uid_t *)arg2)[0];
if (uid1 < uid2) {
return -1;