1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

gcc: archive reoder struct vars

Easier for automatic struct initialization = { 0 } without warns
from older gcc.
This commit is contained in:
Zdenek Kabelac 2021-10-14 23:41:47 +02:00
parent 438408de7d
commit 14cf579263

View File

@ -47,9 +47,8 @@
* with the least recent at the head.
*/
struct archive_file {
struct dm_list list;
const char *name;
struct dm_list list;
uint32_t index;
};