libpkgconf: pkg: fix harmless gcc7 compiler warning

pull/173/head
William Pitcock 2018-01-05 11:38:21 -06:00
parent 1c9f36036a
commit 4a09efe070
1 changed files with 4 additions and 2 deletions

View File

@ -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,
},
};