diff options
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2dc4d5a..adf08cf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -238,9 +238,9 @@ int main(int argc, char *argv[]) { if (result.count("quiet")) { std::cout << n.second << std::endl; } else if (result.count("verbose")) { - std::cout << n.first << ": " << n.second << std::endl; + std::cout << n.first << " - " << n.second << std::endl; } else { - std::cout << getPrefixByHash(n.first) << ": " << n.second << std::endl; + std::cout << getPrefixByHash(n.first) << " - " << n.second << std::endl; } } } |