diff --git a/tyvm.c b/tyvm.c index 83c33cf..50ba59c 100644 --- a/tyvm.c +++ b/tyvm.c @@ -130,7 +130,7 @@ void read_image_file(FILE* file) { int read_image(const char* image_path) { FILE* file = fopen(image_path, "rb"); - if (!file) { return 0; }; + if(!file) return 0; read_image_file(file); fclose(file);