Skip to content

Commit

Permalink
fix msvc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco149 committed Feb 26, 2019
1 parent ed4d3d9 commit cc0da37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oppai.c
Original file line number Diff line number Diff line change
Expand Up @@ -2390,7 +2390,7 @@ void* memclone(void* p, int size) {
}

char* strclone(char* s) {
int len = strlen(s) + 1;
int len = (int)strlen(s) + 1;
return memclone(s, len);
}

Expand Down

0 comments on commit cc0da37

Please sign in to comment.