Fix a compile failure on Windows.

This commit is contained in:
unknown 2007-04-05 23:22:33 +04:00
parent aadfe5e7fc
commit 25677bdc2e

View File

@ -3683,7 +3683,7 @@ byte *sys_var_thd_sql_mode::value_ptr(THD *thd, enum_var_type type,
ulonglong val= ((type == OPT_GLOBAL) ? global_system_variables.*offset :
thd->variables.*offset);
(void) symbolic_mode_representation(thd, val, &sql_mode);
return sql_mode.str;
return (byte *) sql_mode.str;
}