From 4c93cc56234f34947c94710a7d6940ef327089d4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 5 Aug 2020 14:29:03 +0200 Subject: Fix mv() diagnostics --- bpkg/utility.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx index 9c9c991..df663c9 100644 --- a/bpkg/utility.cxx +++ b/bpkg/utility.cxx @@ -246,7 +246,7 @@ namespace bpkg mv (const dir_path& from, const dir_path& to) { if (verb >= 3) - text << "mv " << from << " to " << to; // Prints trailing slashes. + text << "mv " << from << ' ' << to; // Prints trailing slashes. try { -- cgit v1.1