diff options
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 2af98d6fbf0..1aef744445f 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -98,7 +98,7 @@ public: char* get_log_fname() { return log_file_name; } void lock_index() { pthread_mutex_lock(&LOCK_index);} void unlock_index() { pthread_mutex_unlock(&LOCK_index);} - FILE* get_index_file() { return index_file;} + File get_index_file() { return index_file;} }; /* character conversion tables */ |