All of lore.kernel.org
 help / color / mirror / Atom feed
* main - gcc: archive reoder struct vars
@ 2021-10-14 22:09 Zdenek Kabelac
  0 siblings, 0 replies; only message in thread
From: Zdenek Kabelac @ 2021-10-14 22:09 UTC (permalink / raw)
  To: lvm-devel

Gitweb:        https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=14cf579263cb9121a8f06396c6257453492e043b
Commit:        14cf579263cb9121a8f06396c6257453492e043b
Parent:        438408de7dc3be6daed240ec52f0e0a09ae9b2f6
Author:        Zdenek Kabelac <zkabelac@redhat.com>
AuthorDate:    Thu Oct 14 23:41:47 2021 +0200
Committer:     Zdenek Kabelac <zkabelac@redhat.com>
CommitterDate: Fri Oct 15 00:09:07 2021 +0200

gcc: archive reoder struct vars

Easier for automatic struct initialization = { 0 } without warns
from older gcc.
---
 lib/format_text/archive.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/format_text/archive.c b/lib/format_text/archive.c
index c9c4f2265..09a472b4c 100644
--- a/lib/format_text/archive.c
+++ b/lib/format_text/archive.c
@@ -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;
 };
 



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-14 22:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-14 22:09 main - gcc: archive reoder struct vars Zdenek Kabelac

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.