1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-09-09 00:27:11 +02:00

Update the SQLite module to comply with the new StackStrF changes.

This commit is contained in:
Sandu Liviu Catalin
2018-07-30 01:08:13 +03:00
parent 89734ae1b2
commit 7a630cb6bf
3 changed files with 9 additions and 9 deletions

View File

@@ -118,7 +118,7 @@ Int32 ConnHnd::Flush(Uint32 num, Object & env, Function & func)
try
{
// Ask the callback whether the query processing should end here
SharedPtr< bool > ret = callback.Evaluate< bool, Int32, const String & >(mStatus, *itr);
SharedPtr< bool > ret = callback.Evaluate< bool >(mStatus, *itr);
// Should we break here?
if (!!ret && (*ret == false))
{