Skip to content

Commit

Permalink
Fix type cast error
Browse files Browse the repository at this point in the history
  • Loading branch information
mopemope committed Nov 4, 2015
1 parent d2fc144 commit c039c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_src/lfeexec.c
Expand Up @@ -64,7 +64,7 @@ int main(int argc, char **argv) {
sprintf(pa, "%s/ebin", rootdir);

/* Allocate and initialise the erl argument array. */
Eargv = emalloc(sizeof(*argv) * (argc + 16));
Eargv = (char **)emalloc(sizeof(*argv) * (argc + 16));
Eargc = 0;
PUSH(emu); /* The program we are going to run */

Expand Down

0 comments on commit c039c66

Please sign in to comment.