Commit 90d02240 authored by Alexander Barkov's avatar Alexander Barkov

Fixing a compilation warning

parent 18112a3f
......@@ -1474,7 +1474,7 @@ void *PlgDBSubAlloc(PGLOBAL g, void *memp, size_t size)
if ((uint)size > pph->FreeBlk) { /* Not enough memory left in pool */
sprintf(g->Message,
"Not enough memory in Work area for request of %d (used=%d free=%d)",
size, pph->To_Free, pph->FreeBlk);
(int) size, pph->To_Free, pph->FreeBlk);
#if defined(DEBTRACE)
htrc("%s\n", g->Message);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment