mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-05-15 11:08:10 +02:00
pkg/merge_flag_lists: avoid flags duplication when merging flags
This commit is contained in:
parent
113b28a7ae
commit
3455bb83b2
1 changed files with 1 additions and 1 deletions
2
pkg.c
2
pkg.c
|
|
@ -567,7 +567,7 @@ merge_flag_lists (GList *packages, FlagType type)
|
|||
last = merged;
|
||||
}
|
||||
else
|
||||
last = g_list_next (g_list_append (last, flags->data));
|
||||
last = g_list_append (last, flags->data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue