1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-11 05:17:41 +03:00

feature #206: update casting in generic sqlite callback function

This commit is contained in:
Ruben S. Montero 2010-04-07 17:25:39 +02:00
parent 36d27746ba
commit 4f74172044

View File

@ -40,7 +40,7 @@ extern "C" int sqlite_callback (
{
ObjectSQL *obj;
obj = static_cast<ObjectSQL *>(_obj);
obj = static_cast<Callbackable *>(_obj);
if (obj == 0)
{