mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
libsysprof-capture: fix comparison of translation item
This commit is contained in:
@ -87,7 +87,7 @@ compare_by_src (gconstpointer a,
|
|||||||
gconstpointer b)
|
gconstpointer b)
|
||||||
{
|
{
|
||||||
const TranslateItem *itema = a;
|
const TranslateItem *itema = a;
|
||||||
const TranslateItem *itemb = a;
|
const TranslateItem *itemb = b;
|
||||||
|
|
||||||
if (itema->src < itemb->src)
|
if (itema->src < itemb->src)
|
||||||
return -1;
|
return -1;
|
||||||
|
|||||||
Reference in New Issue
Block a user