1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

feature #192: Minor fix for the TestPool

This commit is contained in:
Ruben S. Montero 2010-04-18 15:59:46 +02:00
parent e29f34cb4a
commit c646c5ff7d

View File

@ -65,7 +65,7 @@ int TestObjectSQL::select(SqlDB *db)
int boid;
set_callback(
static_cast<Callbackable::CallBack>(&TestObjectSQL::unmarshall),0);
static_cast<Callbackable::Callback>(&TestObjectSQL::unmarshall),0);
oss << "SELECT * FROM " << table << " WHERE oid = " << oid;
boid = oid;
@ -128,4 +128,4 @@ int TestObjectSQL::drop(SqlDB * db)
}
return rc;
}
}