style: correct variable naming

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2022-05-16 13:46:02 +00:00
committed by Compute-Runtime-Automation
parent eecde1e1f3
commit d643c587b9
13 changed files with 96 additions and 96 deletions

View File

@@ -38,10 +38,10 @@ Event *Event::create(EventPool *eventPool, const ze_event_desc_t *desc, Device *
}
event->setUsingContextEndOffset(useContextEndOffset);
EventPoolImp *EventPoolImp = static_cast<struct EventPoolImp *>(eventPool);
EventPoolImp *eventPoolImp = static_cast<struct EventPoolImp *>(eventPool);
// do not reset even if it has been imported, since event pool
// might have been imported after events being already signaled
if (EventPoolImp->isImportedIpcPool == false) {
if (eventPoolImp->isImportedIpcPool == false) {
event->reset();
}