summaryrefslogtreecommitdiff
path: root/src/bin/exactness/player.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/exactness/player.c')
-rw-r--r--src/bin/exactness/player.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/bin/exactness/player.c b/src/bin/exactness/player.c
index 2dcf3f5e59..a3d6b04880 100644
--- a/src/bin/exactness/player.c
+++ b/src/bin/exactness/player.c
@@ -1014,8 +1014,11 @@ _write_unit_file(void)
Exactness_Unit *tmp = NULL;
EINA_SAFETY_ON_NULL_RETURN(_src_unit);
- if (_src_type == FTYPE_EXU) tmp = exactness_unit_file_read(_src_filename);
- _dest_unit->actions = tmp->actions;
+ if (_src_type == FTYPE_EXU)
+ {
+ tmp = exactness_unit_file_read(_src_filename);
+ _dest_unit->actions = tmp->actions;
+ }
exactness_unit_file_write(_dest_unit, _dest);
}
}