From ce1c9a8aca8b5fa43a3bcf577b1897e5e6a5cf3d Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 6 Dec 2010 20:21:22 -0500 Subject: [PATCH] Display version on minerd --help usage output. --- cpu-miner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpu-miner.c b/cpu-miner.c index db1fd575..53712969 100644 --- a/cpu-miner.c +++ b/cpu-miner.c @@ -327,6 +327,7 @@ static void show_usage(void) { int i; + printf("minerd version %s\n\n", VERSION); printf("Usage:\tminerd [options]\n\nSupported options:\n"); for (i = 0; i < ARRAY_SIZE(options_help); i++) { struct option_help *h;