1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 10:04:33 +00:00

Cope with invalid parameter passing.

This commit is contained in:
Con Kolivas 2011-07-05 16:47:19 +10:00
parent bc7cde7b36
commit 4172fec24a

2
main.c
View File

@ -281,6 +281,7 @@ static struct option options[] = {
{ "vectors", 1, NULL, 'v' },
{ "worksize", 1, NULL, 'w' },
{ "userpass", 1, NULL, 'O' },
{0, 0, 0, 0}
};
static bool jobj_binary(const json_t *obj, const char *key,
@ -1414,6 +1415,7 @@ static void parse_arg (int key, char *arg)
case 1004:
use_syslog = true;
break;
case '?':
default:
show_usage();
}