Eobj: Fix issue with the typecheck macro.

It should not use the passed variable more than once.

SVN revision: 70568
This commit is contained in:
Tom Hacohen 2012-05-01 08:07:04 +00:00
parent 816a4ad71d
commit d1d81c4f86
1 changed files with 1 additions and 2 deletions

View File

@ -61,8 +61,7 @@ EAPI extern Eina_Lock _eo_class_creation_lock;
({ \
type __x; \
__x = x; \
(void) __x; \
(type) x; \
(type) __x; \
})
/**