diff options
author | unknown <konstantin@mysql.com> | 2004-11-17 13:45:05 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-11-17 13:45:05 +0300 |
commit | 7cd9cc1bfc4426f15f79121b8eebf0947aea7cc6 (patch) | |
tree | 84d75efa19cad4622af500d6c979176c8dd1c66b /sql/sp_pcontext.h | |
parent | 163d8b27aaf0a18df6583cac58930a84eb70ebbc (diff) | |
download | mariadb-git-7cd9cc1bfc4426f15f79121b8eebf0947aea7cc6.tar.gz |
Fix warnings and compilation failures (Windows).
sql/field.cc:
Fix warning.
sql/item_func.cc:
Fix Windows compilation failure.
sql/opt_range.cc:
Fix warnings and errors (Windows)
sql/sp_pcontext.h:
Fix warning (Windows).
sql/table.h:
Fix warning (Windows).
Diffstat (limited to 'sql/sp_pcontext.h')
-rw-r--r-- | sql/sp_pcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h index 36e4ed06aa7..66f631f4938 100644 --- a/sql/sp_pcontext.h +++ b/sql/sp_pcontext.h @@ -50,7 +50,7 @@ typedef struct sp_label char *name; uint ip; // Instruction index int type; // begin/iter or ref/free - struct sp_pcontext *ctx; // The label's context + sp_pcontext *ctx; // The label's context } sp_label_t; typedef struct sp_cond_type |