diff options
-rw-r--r-- | bpkg/manifest.cxx | 2 | ||||
-rw-r--r-- | bpkg/version.in | 2 |
2 files changed, 2 insertions, 2 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 ? ')' : ']'); diff --git a/bpkg/version.in b/bpkg/version.in index da8d84c..113c9bf 100644 --- a/bpkg/version.in +++ b/bpkg/version.in @@ -1,4 +1,4 @@ -// file : bpkg/version -*- C++ -*- +// file : bpkg/version.in -*- C++ -*- // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file |