cgit

commit da218fcd9eb554a8405ca72e84bcc0feb371194f

Author: John Keeping <john@keeping.me.uk>

ui-snapshot: set unused cgit_filter fields to zero

By switching the assignment of fields in the cgit_filter structure to
use designated initializers, the compiler will initialize all other
fields to their default value.  This will be needed when we add the
extra_args field in the next patch.

Signed-off-by: John Keeping <john@keeping.me.uk>

 ui-snapshot.c | 8 ++++----


diff --git a/ui-snapshot.c b/ui-snapshot.c
index 8f82119234b6bab42db19b6b8409c69504fd97ad..5136c49d84b8fb9307c592892f246fb605a89a69 100644
--- a/ui-snapshot.c
+++ b/ui-snapshot.c
@@ -58,10 +58,10 @@ 					const char *prefix,
 					char *filter_argv[])
 {
 	int rv;
-	struct cgit_filter f;
-
-	f.cmd = filter_argv[0];
-	f.argv = filter_argv;
+	struct cgit_filter f = {
+		.cmd = filter_argv[0],
+		.argv = filter_argv,
+	};
 	cgit_open_filter(&f);
 	rv = write_tar_archive(hex, prefix);
 	cgit_close_filter(&f);