diff options
author | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-09-23 16:47:08 +0300 |
---|---|---|
committer | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-09-23 16:47:08 +0300 |
commit | acf218b708c68f5fff9fea9450a438116866f1d5 (patch) | |
tree | dabaf9b38c2c72433e000b36b0a628d9d36fbb38 /mysys/mf_iocache.c | |
parent | f5c00b0dbda74c899067880ac0de5c489d54b19f (diff) | |
download | mariadb-git-acf218b708c68f5fff9fea9450a438116866f1d5.tar.gz |
Several fixes revelaled by Intel compiler.
Diffstat (limited to 'mysys/mf_iocache.c')
-rw-r--r-- | mysys/mf_iocache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/mf_iocache.c b/mysys/mf_iocache.c index b000af19aa0..63f5dc964da 100644 --- a/mysys/mf_iocache.c +++ b/mysys/mf_iocache.c @@ -165,7 +165,7 @@ int init_io_cache(IO_CACHE *info, File file, uint cachesize, (ulong) info, (int) type, (ulong) seek_offset)); info->file= file; - info->type= 0; /* Don't set it until mutex are created */ + info->type= TYPE_NOT_SET; /* Don't set it until mutex are created */ info->pos_in_file= seek_offset; info->pre_close = info->pre_read = info->post_read = 0; info->arg = 0; @@ -1246,7 +1246,7 @@ int end_io_cache(IO_CACHE *info) if (info->type == SEQ_READ_APPEND) { /* Destroy allocated mutex */ - info->type=0; + info->type= TYPE_NOT_SET; #ifdef THREAD pthread_mutex_destroy(&info->append_buffer_lock); #endif |