From 4a09efe0708429b1b4df8a376d6dea5dbe5520c4 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 5 Jan 2018 11:38:21 -0600 Subject: [PATCH] libpkgconf: pkg: fix harmless gcc7 compiler warning --- libpkgconf/pkg.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libpkgconf/pkg.c b/libpkgconf/pkg.c index 5357b06..db168b0 100644 --- a/libpkgconf/pkg.c +++ b/libpkgconf/pkg.c @@ -900,7 +900,8 @@ static pkgconf_pkg_t pkg_config_virtual = { .key = "pc_path", .value = PKG_DEFAULT_PATH, }, - } + }, + .tail = NULL, } }; @@ -929,7 +930,8 @@ static pkgconf_pkg_t pkgconf_virtual = { .key = "pc_path", .value = PKG_DEFAULT_PATH, }, - } + }, + .tail = NULL, }, };