ostree-run-triggers: fix typo in filename comparison function
The comparison function was comparing the first file to itself, and this resulted in triggers being run in random order. https://bugzilla.gnome.org/show_bug.cgi?id=682297
This commit is contained in:
parent
a571c83d82
commit
1d93a743dc
|
|
@ -76,7 +76,7 @@ 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**)bp;
|
||||||
char *name_a, *name_b;
|
char *name_a, *name_b;
|
||||||
int c;
|
int c;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue