From b5269973ab0f25866970caa369f7ae483a3590a7 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 21 Jan 2005 22:03:08 +0200 Subject: dict0load.c: Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge os0thread.c: test innobase/os/os0thread.c: test innobase/dict/dict0load.c: Fix a compilation error reported by Paul Dubois; I forgot to compile 5.0 after the merge --- innobase/dict/dict0load.c | 2 +- innobase/os/os0thread.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/innobase/dict/dict0load.c b/innobase/dict/dict0load.c index 63f25cdddfe..17b53a7a140 100644 --- a/innobase/dict/dict0load.c +++ b/innobase/dict/dict0load.c @@ -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); diff --git a/innobase/os/os0thread.c b/innobase/os/os0thread.c index 12a8abf3069..91061bc8459 100644 --- a/innobase/os/os0thread.c +++ b/innobase/os/os0thread.c @@ -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 */ -- cgit v1.2.1