diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-03-24 13:02:01 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-03-24 13:02:01 +0400 |
commit | ae3f8c7eab348ab9e91c4bf13666e32e658803ae (patch) | |
tree | a6aa2e567c120e520b82ff6767cee4290ffb8c31 /storage/csv/transparent_file.h | |
parent | 0b2f4c56c6b9fd87ffeec11ab3087bdada30d610 (diff) | |
download | mariadb-git-ae3f8c7eab348ab9e91c4bf13666e32e658803ae.tar.gz |
compiler warning fix
Diffstat (limited to 'storage/csv/transparent_file.h')
-rw-r--r-- | storage/csv/transparent_file.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/csv/transparent_file.h b/storage/csv/transparent_file.h index 29da06d5ab7..0168e271e7d 100644 --- a/storage/csv/transparent_file.h +++ b/storage/csv/transparent_file.h @@ -23,7 +23,7 @@ class Transparent_file File filedes; uchar *buff; /* in-memory window to the file or mmaped area */ /* current window sizes */ - off_t lower_bound; + my_off_t lower_bound; my_off_t upper_bound; uint buff_size; @@ -34,8 +34,8 @@ public: void init_buff(File filedes_arg); uchar *ptr(); - off_t start(); - off_t end(); - char get_value (off_t offset); - off_t read_next(); + my_off_t start(); + my_off_t end(); + char get_value (my_off_t offset); + my_off_t read_next(); }; |