According to section 6.7.8 of the C89/C99 standards, initializer lists must not be empty. Explicitly set the first field to zero which is the standard way of initializing a structure to all zeros.
This also fixes a GCC warning seen with "-Wmissing-field-initializers". Signed-off-by: Lukas Fleischer <[email protected]> --- Add a better commit message, see discussion on the original patch. ui-snapshot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-snapshot.c b/ui-snapshot.c index 47432bd..e740645 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c @@ -48,7 +48,7 @@ const struct cgit_snapshot_format cgit_snapshot_formats[] = { { ".tar.bz2", "application/x-bzip2", write_tar_bzip2_archive, 0x04 }, { ".tar", "application/x-tar", write_tar_archive, 0x08 }, { ".tar.xz", "application/x-xz", write_tar_xz_archive, 0x10 }, - {} + { 0 } }; static const struct cgit_snapshot_format *get_format(const char *filename) -- 1.8.2.rc0.247.g811e0c0 _______________________________________________ cgit mailing list [email protected] http://hjemli.net/mailman/listinfo/cgit
