Silence MSVC warning.

llvm-svn: 78660
This commit is contained in:
Benjamin Kramer 2009-08-11 11:01:19 +00:00
parent 806845daec
commit 6d78d69586
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ int main(int argc, char** argv) {
Args[1] = strcat(strcpy((char*)malloc(strlen(argv[0])+4), argv[0]), ".bc");
/* The rest of the args are as before. */
memcpy(Args+2, argv+1, sizeof(char*)*argc);
memcpy((char **)Args+2, argv+1, sizeof(char*)*argc);
/* Run the JIT. */
execvp(Interp, (char **)Args);