Set brackets to remove gcc compiler warning

This commit is contained in:
Holger Vogt 2023-08-12 23:57:38 +02:00
parent ad02a7c47a
commit de98e49956
1 changed files with 2 additions and 1 deletions

View File

@ -73,12 +73,13 @@ static void
delete_ret(void)
{
int i;
if (return_all)
if (return_all) {
for (i = 0; i < return_all->num_steps; i++) {
tfree(return_all->evt_dect[i]->node_value);
tfree(return_all->evt_dect[i]);
}
tfree(return_all);
}
}
pevt_shared_data