summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2004-04-15 04:55:49 +0200
committerunknown <lenz@mysql.com>2004-04-15 04:55:49 +0200
commit4cc26335c12a253e33d3e236966c2f0038710fa4 (patch)
tree2798c5c048b657be2cceff1088883e566972088b
parentf10d01a747267e169d9f0b80d30a71b00f0bce7c (diff)
downloadmariadb-git-4cc26335c12a253e33d3e236966c2f0038710fa4.tar.gz
- Fixed compile error in sql_parse.cc
sql/sql_parse.cc: - Fixed compile error
-rw-r--r--sql/sql_parse.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc
index 1e3beeca8a9..3a3ebc93f51 100644
--- a/sql/sql_parse.cc
+++ b/sql/sql_parse.cc
@@ -5223,5 +5223,5 @@ int create_table_precheck(THD *thd, TABLE_LIST *tables,
DBUG_RETURN(1);
DBUG_RETURN((grant_option && want_priv != CREATE_TMP_ACL &&
check_grant(thd, want_priv, create_table, 0, UINT_MAX, 0)) ?
- 1 : 0)
+ 1 : 0);
}