Fixed wrong cmp function.
FossilOrigin-Name: f5d4979cc39d2171e3f79cd33d2c865a7d14d93b147f8271b507e694f8d65952
This commit is contained in:
parent
e35aae0911
commit
669bba727b
@ -149,7 +149,7 @@ static int cw_action_out_cmp(const void *elem1, const void *elem2)
|
||||
if (r != 0)
|
||||
return r;
|
||||
|
||||
r = e1->item_id - e2->item_id;
|
||||
r = strcmp(e1->item_id, e2->item_id);
|
||||
if (r != 0)
|
||||
return r;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user