Skip to content

Commit f049bbf

Browse files
committed
Compiler: fix #328
1 parent 0469dff commit f049bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/util.cppo.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ let absolute_path f =
7373
else f
7474

7575
let read_file f =
76-
let ic = open_in f in
76+
let ic = open_in_bin f in
7777
let n = in_channel_length ic in
7878
let s = Bytes.create n in
7979
really_input ic s 0 n;

0 commit comments

Comments
 (0)