summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2013-11-08 15:30:25 +0000
committerTom Hacohen <tom@stosb.com>2014-04-10 04:20:19 +0100
commit76dc0d99a6bed65eeae9f894a03c000f848c056e (patch)
tree8799e5e9de0d62c0dc92e316b99eb0254e74810a
parent2fe10219c0a694aa8d9a1f7b3f39516ce98e2e2e (diff)
downloadefl-76dc0d99a6bed65eeae9f894a03c000f848c056e.tar.gz
eo2: formatting.
-rw-r--r--src/lib/eo/Eo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h
index 24f7e3bd7e..1aa1c8046c 100644
--- a/src/lib/eo/Eo.h
+++ b/src/lib/eo/Eo.h
@@ -642,7 +642,7 @@ EAPI extern Eo2_Hook_Call eo2_hook_call_post;
#define EO2_FUNC_COMMON_OP(Name, DefRet) \
Eo2_Op_Call_Data call; \
static Eo_Op op = EO_NOOP; \
- if ( op == EO_NOOP ) \
+ if (op == EO_NOOP) \
op = _eo2_api_op_id_get((void*)Name); \
if (!_eo2_call_resolve(#Name, op, &call)) return DefRet; \
_Eo2_##Name##_func _func_ = (_Eo2_##Name##_func) call.func; \
@@ -689,7 +689,7 @@ EAPI extern Eo2_Hook_Call eo2_hook_call_post;
void \
Name(__VA_ARGS__) \
{ \
- typedef void (*_Eo2_##Name##_func)(Eo *, void *obj_data, __VA_ARGS__);\
+ typedef void (*_Eo2_##Name##_func)(Eo *, void *obj_data, __VA_ARGS__); \
EO2_FUNC_COMMON_OP(Name, ); \
EO2_HOOK_CALL_PREPAREV(eo2_hook_call_pre, Arguments); \
_func_(call.obj, call.data, Arguments); \