summaryrefslogtreecommitdiff
path: root/innobase/os
diff options
context:
space:
mode:
authorunknown <heikki@donna.mysql.fi>2001-04-11 21:47:51 +0300
committerunknown <heikki@donna.mysql.fi>2001-04-11 21:47:51 +0300
commitf21a521981eb945982a81926cdc01735b689f2f0 (patch)
tree585b903bde40ac88d368f1423528dd164c349edd /innobase/os
parentc164b35345a8cb1c7fbece2a2dec59c33609850d (diff)
downloadmariadb-git-f21a521981eb945982a81926cdc01735b689f2f0.tar.gz
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
Diffstat (limited to 'innobase/os')
-rw-r--r--innobase/os/os0file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/os/os0file.c b/innobase/os/os0file.c
index 130d8eb0a80..8e9b8482259 100644
--- a/innobase/os/os0file.c
+++ b/innobase/os/os0file.c
@@ -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);