summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Osipov <kostja@sun.com>2009-10-14 17:52:13 +0400
committerKonstantin Osipov <kostja@sun.com>2009-10-14 17:52:13 +0400
commit2b122ab92968ce59a82febc6c06496c6a18e9ac9 (patch)
tree4934de4a8aacdcf13618a102b63ba1049e42df27
parentb4fb4fcce9bcee37d7b4fc1c4f6adbe1e0b0f794 (diff)
downloadmariadb-git-2b122ab92968ce59a82febc6c06496c6a18e9ac9.tar.gz
Backport of:
---------------------------------------------------------- revno: 2630.22.39 committer: Konstantin Osipov <kostja@sun.com> branch nick: mysql-6.0-runtime timestamp: Wed 2008-10-08 23:44:34 +0400 message: Bug #34481 A typo in HugeTLB error Message. mysys/my_largepage.c: Fix a typo.
-rw-r--r--mysys/my_largepage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_largepage.c b/mysys/my_largepage.c
index a20111396cb..9fa5b73bf88 100644
--- a/mysys/my_largepage.c
+++ b/mysys/my_largepage.c
@@ -128,7 +128,7 @@ uchar* my_large_malloc_int(size_t size, myf my_flags)
{
if (my_flags & MY_WME)
fprintf(stderr,
- "Warning: Failed to allocate %lu bytesx from HugeTLB memory."
+ "Warning: Failed to allocate %lu bytes from HugeTLB memory."
" errno %d\n", (ulong) size, errno);
DBUG_RETURN(NULL);