Browse Source

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

nfactor-troky
Luke Dashjr 13 years ago
parent
commit
90c5ef1fa7
  1. 6
      cgminer.c

6
cgminer.c

@ -1971,7 +1971,11 @@ void kill_work(void) @@ -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);

Loading…
Cancel
Save