summaryrefslogtreecommitdiff
path: root/sql/unireg.cc
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2005-06-06 15:23:04 +0200
committerunknown <lenz@mysql.com>2005-06-06 15:23:04 +0200
commita0d18bd4921cf36265148a9b634dfac217b380b8 (patch)
treecd4685a1af6e9aab4c77e0609826ad2fbaa41cf0 /sql/unireg.cc
parent29f18223aaec312d214658ffc59694a0ab6be6d7 (diff)
downloadmariadb-git-a0d18bd4921cf36265148a9b634dfac217b380b8.tar.gz
Some Windows compile improvements:
- removed some unreferenced variables - fixed the libmysql project file by removing a duplicate file reference (merge error) sql/item_func.cc: - removed unused variable "Field" from Item_func_sp::sp_result_field sql/sql_select.cc: - removed unreferenced variable "filename" from create_tmp_table sql/unireg.cc: - removed unused variable "firstpos" from make_empty_rec VC++Files/libmysql/libmysql.dsp: - after-merge fix: removed duplicate file ctype-cp932.c
Diffstat (limited to 'sql/unireg.cc')
-rw-r--r--sql/unireg.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/unireg.cc b/sql/unireg.cc
index eda17d8f4a9..e8aad2fedd0 100644
--- a/sql/unireg.cc
+++ b/sql/unireg.cc
@@ -668,7 +668,7 @@ static bool make_empty_rec(THD *thd, File file,enum db_type table_type,
{
int error;
Field::utype type;
- uint firstpos, null_count;
+ uint null_count;
uchar *buff,*null_pos;
TABLE table;
create_field *field;