diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-02-25 22:22:41 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-03-13 13:58:45 +0100 |
commit | 67c3067f1a615fd6ff0b332c2a526d052442913d (patch) | |
tree | 6cb34934fefa0e5f88b8c4eacbf98a70ee76525a /ftparchive/apt-ftparchive.cc | |
parent | 255c9e4b74fe677d723c51d3450869ad45ca5463 (diff) |
fix -Wmissing-field-initializers warnings
Reported-By: gcc
Git-Dch: Ignore
Diffstat (limited to 'ftparchive/apt-ftparchive.cc')
-rw-r--r-- | ftparchive/apt-ftparchive.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index 712f8469a..d14b68044 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -484,7 +484,7 @@ void LoadTree(vector<PackageMap> &PkgList,Configuration &Setup) struct SubstVar const Vars[] = {{"$(DIST)",&Dist}, {"$(SECTION)",&Section}, {"$(ARCH)",&Arch}, - {}}; + {NULL, NULL}}; mode_t const Perms = Block.FindI("FileMode", Permissions); bool const LongDesc = Block.FindB("LongDescription", LongDescription); TranslationWriter *TransWriter; |