From 01236bc40bb9dae7f00214630877654b9c4cac16 Mon Sep 17 00:00:00 2001 From: XMRig Date: Wed, 25 Mar 2020 04:03:18 +0700 Subject: [PATCH] Added missing newline in --help output. --- src/core/config/usage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/config/usage.h b/src/core/config/usage.h index 542ee4d3..8078a081 100644 --- a/src/core/config/usage.h +++ b/src/core/config/usage.h @@ -50,7 +50,7 @@ static inline const std::string &usage() u += " -u, --user=USERNAME username for mining server\n"; u += " -p, --pass=PASSWORD password for mining server\n"; u += " -O, --userpass=U:P username:password pair for mining server\n"; - u += " -x, --proxy=HOST:PORT connect through a SOCKS5 proxy"; + u += " -x, --proxy=HOST:PORT connect through a SOCKS5 proxy\n"; u += " -k, --keepalive send keepalived packet for prevent timeout (needs pool support)\n"; u += " --nicehash enable nicehash.com support\n"; u += " --rig-id=ID rig identifier for pool-side statistics (needs pool support)\n";