Skip to content

Commit ed467e9

Browse files
committed
fix: add back missing return for caml_unix_lstat_64
1 parent 3f8514a commit ed467e9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

runtime/unix.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ function caml_unix_lstat(name) {
154154
function caml_unix_lstat_64(name) {
155155
var r = caml_unix_lstat(name);
156156
r[9] = caml_int64_of_int32(r[9]);
157+
return r;
157158
}
158159

159160
//Provides: caml_unix_mkdir

0 commit comments

Comments
 (0)