Skip to content

Commit

Permalink
Use binary for empty file creation
Browse files Browse the repository at this point in the history
  • Loading branch information
sagiegurari committed Sep 23, 2021
1 parent d01d41f commit ca1fbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fsio.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ char *fsio_read_binary_file_with_options(char *file, struct FsIOReadFileOptions

bool fsio_create_empty_file(char *file)
{
return(fsio_write_text_file(file, ""));
return(fsio_write_binary_file(file, ""));
}


Expand Down

0 comments on commit ca1fbc6

Please sign in to comment.