diff options
Diffstat (limited to 'bpkg/manifest.cxx')
-rw-r--r-- | bpkg/manifest.cxx | 2 |
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 ? ')' : ']'); |