diff options
author | monty@hundin.mysql.fi <> | 2002-08-17 00:35:51 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-08-17 00:35:51 +0300 |
commit | 5773b6504a888d61af1cdf7c0764bff7860ab90a (patch) | |
tree | a5bba2df04761e778b4e626fc71182b2708f85ff /innobase/buf | |
parent | 5ff30464a68f70e01664a0af8dd9406e839c99ab (diff) | |
download | mariadb-git-5773b6504a888d61af1cdf7c0764bff7860ab90a.tar.gz |
Fixed bug in blocking handling when compiling with OPENSSL (caused hangup in client code)
Fixed bug in SELECT DISTINCT ... ORDER BY not-used-column.
Fixed bug in pthread_mutex_trylock with HPUX 11.0
Diffstat (limited to 'innobase/buf')
-rw-r--r-- | innobase/buf/buf0buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/buf/buf0buf.c b/innobase/buf/buf0buf.c index 8b946f4b2a1..ee8e8b91f8d 100644 --- a/innobase/buf/buf0buf.c +++ b/innobase/buf/buf0buf.c @@ -285,7 +285,7 @@ buf_page_print( ut_print_timestamp(stderr); fprintf(stderr, - " InnoDB: Page dump in ascii and hex (%u bytes):\n%s", + " InnoDB: Page dump in ascii and hex (%lu bytes):\n%s", (ulint)UNIV_PAGE_SIZE, buf); fprintf(stderr, "InnoDB: End of page dump\n"); |