Skip to content

Commit

Permalink
move protocol version to new line in --version output (fix display is…
Browse files Browse the repository at this point in the history
…sue in created manpages)
  • Loading branch information
walker0643 committed May 14, 2018
1 parent c7569f8 commit 0b2dfd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/barrier/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ App::~App()
void
App::version()
{
std::cout << argsBase().m_exename << " " << kVersion << ", protocol version " << kProtocolMajorVersion << "." << kProtocolMinorVersion << std::endl;
std::cout << argsBase().m_exename << " " << kVersion << std::endl;
std::cout <<"Protocol version " << kProtocolMajorVersion << "." << kProtocolMinorVersion << std::endl;
std::cout << kCopyright << std::endl;

}

int
Expand Down

0 comments on commit 0b2dfd8

Please sign in to comment.