aboutsummaryrefslogtreecommitdiff
path: root/bpkg
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-01-28 11:14:33 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-02-12 17:33:31 +0300
commitecb1efeebaa5597bee4cfdaab7bff4007b73127d (patch)
tree9b1e5185d92973b3a080acceac7341285fc74790 /bpkg
parentcd4243d92ead437e3d10f1182edffedb0949e13e (diff)
Suppress GCC's 'maybe uninitialized' warnings
Diffstat (limited to 'bpkg')
-rw-r--r--bpkg/manifest-utility.cxx2
-rw-r--r--bpkg/rep-fetch.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/manifest-utility.cxx b/bpkg/manifest-utility.cxx
index 031d51a..d697620 100644
--- a/bpkg/manifest-utility.cxx
+++ b/bpkg/manifest-utility.cxx
@@ -95,7 +95,7 @@ namespace bpkg
// if directory contains the .git/ subdirectory then git, otherwise
// bpkg.
//
- repository_type t;
+ repository_type t (repository_type::bpkg);
if (ot)
t = *ot;
diff --git a/bpkg/rep-fetch.cxx b/bpkg/rep-fetch.cxx
index 93ccbc6..f53919f 100644
--- a/bpkg/rep-fetch.cxx
+++ b/bpkg/rep-fetch.cxx
@@ -348,7 +348,7 @@ namespace bpkg
rep_fetch (o, t, r, root, ""); // No reason (user-added).
}
- size_t rcount, pcount;
+ size_t rcount (0), pcount (0);
if (verb)
{
rcount = db.query_value<repository_count> ();