Skip to content

Commit

Permalink
Fix compiler warning on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Jul 12, 2016
1 parent ce6a110 commit d7fcf09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/repl.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ int wmain(int argc, wchar_t *argv[], wchar_t *envp[])
}
#endif
libsupport_init();
if (argc >= 2 && strcmp(argv[1],"--lisp") == 0) {
if (argc >= 2 && strcmp((char*)argv[1],"--lisp") == 0) {
jl_lisp_prompt();
return 0;
}
Expand Down

0 comments on commit d7fcf09

Please sign in to comment.