This commit is contained in:
Christopher Kobayashi 2020-04-21 18:17:33 +09:00
parent bc9a1839a1
commit af794b7b4a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ int main(int argc, char **argv)
file_buffer = calloc(1, inputfile_stat.st_size);
if (!file_buffer) {
printf("%s: could not allocate buffer\n");
printf("%s: could not allocate buffer\n", argv[1]);
fclose(inputfile);
return -1;
}