Browse Source

Fix wrong parameter name which caused compile failure on windows

pull/374/head
Sergey Petrunia 17 years ago
parent
commit
076eb7a67a
  1. 2
      sql/mysql_priv.h

2
sql/mysql_priv.h

@ -1839,7 +1839,7 @@ extern enum_field_types agg_field_type(Item **items, uint nitems);
/* strfunc.cc */
ulonglong find_set(TYPELIB *lib, const char *x, uint length, CHARSET_INFO *cs,
char **err_pos, uint *err_len, bool *set_warning);
ulonglong find_set_from_flags(TYPELIB *lib, uint default_set,
ulonglong find_set_from_flags(TYPELIB *lib, uint default_name,
ulonglong cur_set, ulonglong default_set,
const char *str, uint length, CHARSET_INFO *cs,
char **err_pos, uint *err_len, bool *set_warning);

Loading…
Cancel
Save