diff options
author | unknown <serg@sergbook.mysql.com> | 2003-09-16 15:23:38 +0200 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2003-09-16 15:23:38 +0200 |
commit | 360b3a866a925c6ffd2a69177597a7cfa4bf4e18 (patch) | |
tree | 5ab8c199a76ef3c34831cb2a2285497ae48f71d0 /heap | |
parent | eb4b67556f3a47eeea36c0d9c28921e5d5acea9b (diff) | |
download | mariadb-git-360b3a866a925c6ffd2a69177597a7cfa4bf4e18.tar.gz |
minor cleanups
heap/hp_info.c:
flag in not really unused here :)
sql/item_timefunc.cc:
unnecessary "typedef" keyword removed (VC++ warning)
Diffstat (limited to 'heap')
-rw-r--r-- | heap/hp_info.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/heap/hp_info.c b/heap/hp_info.c index 3122a665fac..e10d140e1f6 100644 --- a/heap/hp_info.c +++ b/heap/hp_info.c @@ -44,8 +44,7 @@ ulong heap_position_old(HP_INFO *info) /* Note that heap_info does NOT return information about the current position anymore; Use heap_position instead */ -int heap_info(reg1 HP_INFO *info,reg2 HEAPINFO *x, - int flag __attribute__((unused))) +int heap_info(reg1 HP_INFO *info,reg2 HEAPINFO *x, int flag ) { DBUG_ENTER("heap_info"); x->records = info->s->records; |