diff options
author | unknown <heikki@donna.mysql.fi> | 2001-04-11 21:47:51 +0300 |
---|---|---|
committer | unknown <heikki@donna.mysql.fi> | 2001-04-11 21:47:51 +0300 |
commit | f21a521981eb945982a81926cdc01735b689f2f0 (patch) | |
tree | 585b903bde40ac88d368f1423528dd164c349edd /innobase/os | |
parent | c164b35345a8cb1c7fbece2a2dec59c33609850d (diff) | |
download | mariadb-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.c | 2 |
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); |