mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
dict0load.c:
Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge os0thread.c: test
This commit is contained in:
parent
7a8d763305
commit
324e5688b4
2 changed files with 2 additions and 2 deletions
|
@ -779,7 +779,7 @@ dict_load_table(
|
|||
/* Track a corruption bug reported on the MySQL mailing list Jan 14,
|
||||
2005: mix_len had a value different from 0 */
|
||||
|
||||
field = rec_get_nth_field(rec, 7, &len);
|
||||
field = rec_get_nth_field_old(rec, 7, &len);
|
||||
ut_a(len == 4);
|
||||
|
||||
mix_len = mach_read_from_4(field);
|
||||
|
|
|
@ -88,7 +88,7 @@ os_thread_create(
|
|||
/*=============*/
|
||||
/* out: handle to the thread */
|
||||
#ifndef __WIN__
|
||||
os_posix_f_t start_f,
|
||||
os_posix_f_t start_f,
|
||||
#else
|
||||
ulint (*start_f)(void*), /* in: pointer to function
|
||||
from which to start */
|
||||
|
|
Loading…
Reference in a new issue