diff options
Diffstat (limited to 'storage/innobase/os/os0thread.c')
-rw-r--r-- | storage/innobase/os/os0thread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/storage/innobase/os/os0thread.c b/storage/innobase/os/os0thread.c index 0c9434ccc7f..a0b1e51d359 100644 --- a/storage/innobase/os/os0thread.c +++ b/storage/innobase/os/os0thread.c @@ -142,8 +142,9 @@ os_thread_create( AIX is always big enough. An empirical test on AIX-4.3 suggested the size was 96 kB, though. */ - ret = pthread_attr_setstacksize - (&attr, (size_t)(PTHREAD_STACK_MIN + 32 * 1024)); + ret = pthread_attr_setstacksize(&attr, + (size_t)(PTHREAD_STACK_MIN + + 32 * 1024)); if (ret) { fprintf(stderr, "InnoDB: Error: pthread_attr_setstacksize" |