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) {
220
220
function caml_unix_stat_64 ( name ) {
221
221
var root = resolve_fs_device ( name ) ;
222
222
if ( ! root . device . stat ) {
223
- caml_failwith ( "caml_unix_stat : not implemented" ) ;
223
+ caml_failwith ( "caml_unix_stat_64 : not implemented" ) ;
224
224
}
225
225
return root . device . stat (
226
226
root . rest ,
@@ -250,7 +250,7 @@ function caml_unix_lstat(name) {
250
250
function caml_unix_lstat_64 ( name ) {
251
251
var root = resolve_fs_device ( name ) ;
252
252
if ( ! root . device . lstat ) {
253
- caml_failwith ( "caml_unix_lstat : not implemented" ) ;
253
+ caml_failwith ( "caml_unix_lstat_64 : not implemented" ) ;
254
254
}
255
255
return root . device . lstat (
256
256
root . rest ,
@@ -363,7 +363,7 @@ function caml_unix_truncate(name, len) {
363
363
function caml_unix_truncate_64 ( name , len ) {
364
364
var root = resolve_fs_device ( name ) ;
365
365
if ( ! root . device . truncate ) {
366
- caml_failwith ( "caml_unix_truncate : not implemented" ) ;
366
+ caml_failwith ( "caml_unix_truncate_64 : not implemented" ) ;
367
367
}
368
368
root . device . truncate (
369
369
root . rest ,
You can’t perform that action at this time.
0 commit comments