mirror of
https://github.com/ostreedev/ostree.git
synced 2025-03-16 10:50:43 +03:00
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,
|
||||
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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user