forked from github/server
fix compile: gcc is extra picky about const char** conversions.
This commit is contained in:
parent
ba0828afd4
commit
5d192cb4c9
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ typedef struct suite {
|
|||
|
||||
static suite *suites;
|
||||
|
||||
static void add_suite(CuSuite *(*csuite)(void), const char *name, int argc, const char *argv[]) {
|
||||
static void add_suite(CuSuite *(*csuite)(void), const char *name, int argc, char *argv[]) {
|
||||
suite *s = 0;
|
||||
if (argc > 1) {
|
||||
int i;
|
||||
|
|
Loading…
Reference in a new issue