File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ function caml_unix_stat(name) {
220220function caml_unix_stat_64 ( name ) {
221221 var root = resolve_fs_device ( name ) ;
222222 if ( ! root . device . stat ) {
223- caml_failwith ( "caml_unix_stat : not implemented" ) ;
223+ caml_failwith ( "caml_unix_stat_64 : not implemented" ) ;
224224 }
225225 return root . device . stat (
226226 root . rest ,
@@ -250,7 +250,7 @@ function caml_unix_lstat(name) {
250250function caml_unix_lstat_64 ( name ) {
251251 var root = resolve_fs_device ( name ) ;
252252 if ( ! root . device . lstat ) {
253- caml_failwith ( "caml_unix_lstat : not implemented" ) ;
253+ caml_failwith ( "caml_unix_lstat_64 : not implemented" ) ;
254254 }
255255 return root . device . lstat (
256256 root . rest ,
@@ -363,7 +363,7 @@ function caml_unix_truncate(name, len) {
363363function caml_unix_truncate_64 ( name , len ) {
364364 var root = resolve_fs_device ( name ) ;
365365 if ( ! root . device . truncate ) {
366- caml_failwith ( "caml_unix_truncate : not implemented" ) ;
366+ caml_failwith ( "caml_unix_truncate_64 : not implemented" ) ;
367367 }
368368 root . device . truncate (
369369 root . rest ,
You can’t perform that action at this time.
0 commit comments