diff options
author | unknown <monty@hundin.mysql.fi> | 2001-08-23 00:55:48 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-08-23 00:55:48 +0300 |
commit | 29ebdeb11ccbf43c5b0a3179bed602828eb36149 (patch) | |
tree | f6e213bc452d9b3c37cd161c3099c3e079f9c9d4 /heap | |
parent | 6bf6d4b8a583d3b7b745cd882a07ad1bd93977e7 (diff) | |
download | mariadb-git-29ebdeb11ccbf43c5b0a3179bed602828eb36149.tar.gz |
Portability fixes
Docs/manual.texi:
Small changes because of user request.
heap/heapdef.h:
Portability fix
include/global.h:
Portability fix
myisam/myisamlog.c:
Portability fix
sql/mini_client.cc:
Fix for windows
sql/sql_repl.cc:
Fix for windows
sql/violite.c:
Fix for windows
Diffstat (limited to 'heap')
-rw-r--r-- | heap/heapdef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/heap/heapdef.h b/heap/heapdef.h index 19c3b7d7792..938cb55c0eb 100644 --- a/heap/heapdef.h +++ b/heap/heapdef.h @@ -34,9 +34,9 @@ if (!(info->update & HA_STATE_AKTIV))\ /* Find pos for record and update it in info->current_ptr */ #define _hp_find_record(info,pos) (info)->current_ptr= _hp_find_block(&(info)->s->block,pos) -typedef struct st_hash_info +typedef struct st_hp_hash_info { - struct st_hash_info *next_key; + struct st_hp_hash_info *next_key; byte *ptr_to_rec; } HASH_INFO; |