summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/lseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/win32unix/lseek.c')
-rw-r--r--otherlibs/win32unix/lseek.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/win32unix/lseek.c b/otherlibs/win32unix/lseek.c
index 2df3a86dc..9619fcc92 100644
--- a/otherlibs/win32unix/lseek.c
+++ b/otherlibs/win32unix/lseek.c
@@ -52,7 +52,7 @@ CAMLprim value unix_lseek(value fd, value ofs, value cmd)
__int64 ret;
ret = caml_set_file_pointer(Handle_val(fd), Long_val(ofs),
- seek_command_table[Int_val(cmd)]);
+ seek_command_table[Int_val(cmd)]);
if (ret > Max_long) {
win32_maperr(ERROR_ARITHMETIC_OVERFLOW);
uerror("lseek", Nothing);
@@ -65,6 +65,6 @@ CAMLprim value unix_lseek_64(value fd, value ofs, value cmd)
__int64 ret;
ret = caml_set_file_pointer(Handle_val(fd), Int64_val(ofs),
- seek_command_table[Int_val(cmd)]);
+ seek_command_table[Int_val(cmd)]);
return copy_int64(ret);
}