diff options
author | konstantin@mysql.com <> | 2004-11-17 13:45:05 +0300 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-11-17 13:45:05 +0300 |
commit | ed2674d0a7e950c7135a378ed4b50cb212653ef9 (patch) | |
tree | 84d75efa19cad4622af500d6c979176c8dd1c66b /sql/sp_pcontext.h | |
parent | 0fa5496a18dfe6964384c550286153b406d1a9b8 (diff) | |
download | mariadb-git-ed2674d0a7e950c7135a378ed4b50cb212653ef9.tar.gz |
Fix warnings and compilation failures (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 |