summaryrefslogtreecommitdiff
path: root/storage/connect/plugutil.c
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mnogosearch.org>2013-02-07 17:56:48 +0400
committerAlexander Barkov <bar@mnogosearch.org>2013-02-07 17:56:48 +0400
commitf8f79d933462e39b1039d0644dfc7697850501c7 (patch)
tree570473e4aaf79d092131a60e861e68c27a5d5500 /storage/connect/plugutil.c
parent40398f3660273a646eb974092a9ddf6f881d700e (diff)
downloadmariadb-git-f8f79d933462e39b1039d0644dfc7697850501c7.tar.gz
Fixing wrong sprintf() calls.
modified: storage/connect/filamap.cpp storage/connect/filamdbf.cpp storage/connect/filamfix.cpp storage/connect/filamtxt.cpp storage/connect/filamvct.cpp storage/connect/ha_connect.cc storage/connect/osutil.c storage/connect/plgdbutl.cpp storage/connect/plugutil.c storage/connect/tabfix.cpp storage/connect/tabxml.cpp storage/connect/user_connect.cc storage/connect/value.cpp storage/connect/xindex.cpp
Diffstat (limited to 'storage/connect/plugutil.c')
-rw-r--r--storage/connect/plugutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/plugutil.c b/storage/connect/plugutil.c
index 79434212038..4415dea1f56 100644
--- a/storage/connect/plugutil.c
+++ b/storage/connect/plugutil.c
@@ -459,7 +459,7 @@ void *PlugSubAlloc(PGLOBAL g, void *memp, size_t size)
sprintf(g->Message,
"Not enough memory in %s area for request of %u (used=%d free=%d)",
- pname, size, pph->To_Free, pph->FreeBlk);
+ pname, (uint) size, pph->To_Free, pph->FreeBlk);
#if defined(DEBUG2) || defined(DEBUG3)
htrc("%s\n", g->Message);