eo ptr ind: fix indentation

This commit is contained in:
Jérémy Zurcher 2013-05-04 21:21:32 +02:00
parent 1a0282691c
commit 10aafd711d
1 changed files with 9 additions and 9 deletions

View File

@ -313,15 +313,15 @@ _eo_id_release(const Eo_Id obj_id)
entry->active = 0;
entry->next_in_queue = -1;
/* Push the entry into the queue */
if (table->queue_tail == -1)
{
table->queue_head = table->queue_tail = entry_id;
}
else
{
table->entries[table->queue_tail].next_in_queue = entry_id;
table->queue_tail = entry_id;
}
if (table->queue_tail == -1)
{
table->queue_head = table->queue_tail = entry_id;
}
else
{
table->entries[table->queue_tail].next_in_queue = entry_id;
table->queue_tail = entry_id;
}
return;
}
}