1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-03-09 12:11:02 +00:00

Bugfix: Make initial_args a const char** to satisfy exec argument type warning (on Windows only)

This commit is contained in:
Luke Dashjr 2012-04-26 14:55:03 -04:00
parent 0e916802ce
commit 90c5ef1fa7

View File

@ -1971,7 +1971,11 @@ void kill_work(void)
quit(0, "Shutdown signal received.");
}
static char **initial_args;
static
#ifdef WIN32
const
#endif
char **initial_args;
static void clean_up(void);