diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-01-21 22:03:08 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-01-21 22:03:08 +0200 |
commit | b5269973ab0f25866970caa369f7ae483a3590a7 (patch) | |
tree | ce00970ef68314681344fade0825d7aaba50f351 /innobase/os | |
parent | 140a86c674de7b31625a7851d3c68b235bf1a997 (diff) | |
download | mariadb-git-b5269973ab0f25866970caa369f7ae483a3590a7.tar.gz |
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
Diffstat (limited to 'innobase/os')
-rw-r--r-- | innobase/os/os0thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |