diff options
| author | Denis Evsyukov <[email protected]> | 2020-02-24 17:15:25 +0300 |
|---|---|---|
| committer | Denis Evsyukov <[email protected]> | 2020-02-24 17:15:25 +0300 |
| commit | d29b57ae72e22c88701c2f28790613e03d2a10a3 (patch) | |
| tree | 88e77e3c3d7bf074b774e5620ddfc890cd38b4e4 /src/main.cpp | |
| parent | remove actions (diff) | |
| download | t-d29b57ae72e22c88701c2f28790613e03d2a10a3.tar.xz t-d29b57ae72e22c88701c2f28790613e03d2a10a3.zip | |
Edit README and format output tasks
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; } } } |