summaryrefslogtreecommitdiff
path: root/storage/archive/azio.c
diff options
context:
space:
mode:
authorunknown <brian@zim.(none)>2005-12-23 12:25:56 -0800
committerunknown <brian@zim.(none)>2005-12-23 12:25:56 -0800
commit64db2ba40dc3052a39d5c707c94e907b12a37e0b (patch)
treebde2adca34402349e454e2353913251eb2d4067c /storage/archive/azio.c
parent6a6e9a1fac6e30996958bb98280d547d413e9f0e (diff)
parent8ff680920a269c44b620306c801a7dd30a0eedbf (diff)
downloadmariadb-git-64db2ba40dc3052a39d5c707c94e907b12a37e0b.tar.gz
Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into zim.(none):/home/brian/mysql/archive-5.1
Diffstat (limited to 'storage/archive/azio.c')
-rw-r--r--storage/archive/azio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/archive/azio.c b/storage/archive/azio.c
index 4a08f65ff30..425f26cef15 100644
--- a/storage/archive/azio.c
+++ b/storage/archive/azio.c
@@ -506,9 +506,9 @@ int azrewind (s)
SEEK_END is not implemented, returns error.
In this version of the library, azseek can be extremely slow.
*/
-z_off_t azseek (s, offset, whence)
+my_off_t azseek (s, offset, whence)
azio_stream *s;
- z_off_t offset;
+ my_off_t offset;
int whence;
{
@@ -589,7 +589,7 @@ z_off_t azseek (s, offset, whence)
given compressed file. This position represents a number of bytes in the
uncompressed data stream.
*/
-z_off_t ZEXPORT aztell (file)
+my_off_t ZEXPORT aztell (file)
azio_stream *file;
{
return azseek(file, 0L, SEEK_CUR);