diff options
author | Konstantin Osipov <kostja@sun.com> | 2009-10-14 17:52:13 +0400 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2009-10-14 17:52:13 +0400 |
commit | 2b122ab92968ce59a82febc6c06496c6a18e9ac9 (patch) | |
tree | 4934de4a8aacdcf13618a102b63ba1049e42df27 | |
parent | b4fb4fcce9bcee37d7b4fc1c4f6adbe1e0b0f794 (diff) | |
download | mariadb-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.c | 2 |
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); |