triggers: Fix comparison function
This commit is contained in:
parent
633da1e7ad
commit
21f1ca364f
|
|
@ -132,8 +132,8 @@ static int
|
||||||
compare_files_by_basename (gconstpointer ap,
|
compare_files_by_basename (gconstpointer ap,
|
||||||
gconstpointer bp)
|
gconstpointer bp)
|
||||||
{
|
{
|
||||||
GFile *a = (GFile*)ap;
|
GFile *a = *(GFile**)ap;
|
||||||
GFile *b = (GFile*)ap;
|
GFile *b = *(GFile**)ap;
|
||||||
char *name_a, *name_b;
|
char *name_a, *name_b;
|
||||||
int c;
|
int c;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue