aboutsummaryrefslogtreecommitdiff
path: root/bpkg/manifest-utility.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/manifest-utility.cxx')
-rw-r--r--bpkg/manifest-utility.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/manifest-utility.cxx b/bpkg/manifest-utility.cxx
index d6a0fd9..5bd273d 100644
--- a/bpkg/manifest-utility.cxx
+++ b/bpkg/manifest-utility.cxx
@@ -474,7 +474,7 @@ namespace bpkg
for (const path& p: bps)
{
path f (bd / p);
- f += "." + e;
+ f += '.' + e;
append_file (f);
}
@@ -610,7 +610,7 @@ namespace bpkg
"package directory");
if (!erp)
- e += " " + d.string ();
+ e += ' ' + d.string ();
throw runtime_error (e);
}
@@ -642,7 +642,7 @@ namespace bpkg
string e ("unable to find bootstrap.build file in package directory");
if (!erp)
- e += " " + d.string ();
+ e += ' ' + d.string ();
throw runtime_error (e);
}