Skip to content

Commit

Permalink
Add missing type cast
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Jun 20, 2024
1 parent 2121a7e commit f8692c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/C/src/docker/RuntimeFilesPropertyContainerized.lf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ main reactor {
long fsize = ftell(f);
fseek(f, 0, SEEK_SET);

char *string = malloc(fsize + 1);
char *string = (char*) malloc(fsize + 1);
fread(string, fsize, 1, f);
fclose(f);

Expand Down

0 comments on commit f8692c6

Please sign in to comment.