Skip to content

Commit

Permalink
fix: added a missing fclose
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewschaaf committed Sep 29, 2010
1 parent 27a9a56 commit 2a05dfc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/image_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ void float32_columns_out(FILE *fout, double **image, int32_t y, int32_t x) {
fwrite(&val, 4, 1, fout);
}
}
fclose(fout);
}


Expand Down

0 comments on commit 2a05dfc

Please sign in to comment.