triggers: Fix comparison function

This commit is contained in:
Colin Walters 2012-02-19 21:10:59 -05:00
parent 633da1e7ad
commit 21f1ca364f

View File

@ -132,8 +132,8 @@ static int
compare_files_by_basename (gconstpointer ap,
gconstpointer bp)
{
GFile *a = (GFile*)ap;
GFile *b = (GFile*)ap;
GFile *a = *(GFile**)ap;
GFile *b = *(GFile**)ap;
char *name_a, *name_b;
int c;