1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Merge pull request #184 from luke-jr/bugfix_const_warning

Bugfix: Make initial_args a const char** to satisfy exec argument type warning (MinGW)
This commit is contained in:
Con Kolivas 2012-04-26 17:36:19 -07:00
commit 8e84abfc22

View File

@ -1957,7 +1957,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);