os0file.c Change pwrite to os_file_pwrite to allow compilation if no pwrite

innobase/os/os0file.c:
  Change pwrite to os_file_pwrite to allow compilation if no pwrite
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
This commit is contained in:
unknown 2001-04-11 21:47:51 +03:00
parent c164b35345
commit f21a521981
2 changed files with 2 additions and 4 deletions

View File

@ -1,3 +1 @@
jani@hynda.mysql.fi
sasha@mysql.sashanet.com
monty@donna.mysql.fi
heikki@donna.mysql.fi

View File

@ -763,7 +763,7 @@ try_again:
UT_NOT_USED(offset_high);
#endif
try_again:
ret = pwrite(file, buf, n, (off_t) offset);
ret = os_file_pwrite(file, buf, n, (off_t) offset);
if ((ulint)ret == n) {
return(TRUE);