aboutsummaryrefslogtreecommitdiff
path: root/bpkg/manifest.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-28 17:18:19 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-28 17:18:19 +0300
commitdbd80c8ab498dc0e52d61c297608cd7e7e98942d (patch)
tree486636ce017dad1a4f0b8874ddbd16ddbae00a60 /bpkg/manifest.cxx
parent580f67e991f9ac7f53bd9430bb74b199209e065d (diff)
Cosmetic style change
Diffstat (limited to 'bpkg/manifest.cxx')
-rw-r--r--bpkg/manifest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/manifest.cxx b/bpkg/manifest.cxx
index 0557259..ef86b99 100644
--- a/bpkg/manifest.cxx
+++ b/bpkg/manifest.cxx
@@ -596,7 +596,7 @@ namespace bpkg
return o << (c.min_open ? "> " : ">= ") << *c.min_version;
if (*c.min_version == *c.max_version)
- return o << "== " << *c.min_version;
+ return o << "== " << *c.min_version;
return o << (c.min_open ? '(' : '[') << *c.min_version << " "
<< *c.max_version << (c.max_open ? ')' : ']');