X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=test-subprocess.c;h=93525eb7be48eb11c242200827a7f6f0706ee241;hb=00480a1e9ccd44f257c09c45c185c9c8825a3078;hp=f2d4c0d22bd418836eb47424a03d0e903246d92e;hpb=7b9ea42b3cb91cc5463ac73610dbc3285e20b400;p=~andy%2Fgit diff --git a/test-subprocess.c b/test-subprocess.c index f2d4c0d22..93525eb7b 100644 --- a/test-subprocess.c +++ b/test-subprocess.c @@ -1,7 +1,7 @@ #include "cache.h" #include "run-command.h" -int main(int argc, const char **argv) +int main(int argc, char **argv) { struct child_process cp; int nogit = 0; @@ -15,6 +15,6 @@ int main(int argc, const char **argv) } memset(&cp, 0, sizeof(cp)); cp.git_cmd = 1; - cp.argv = argv + 1; + cp.argv = (const char **)argv + 1; return run_command(&cp); }