diff options
author | Tom Hacohen <tom@stosb.com> | 2015-10-14 20:42:19 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-10-14 20:43:07 +0100 |
commit | 535076f42587c1e66938ddb862a356ebffd79676 (patch) | |
tree | 2ffda173b8fcb239b292c7bb29d764e45d76ecbb | |
parent | e7211c15172ea4ffcb2ec270337d20c47bcfdbcd (diff) | |
download | efl-535076f42587c1e66938ddb862a356ebffd79676.tar.gz |
Eo: Fix confusing indentation and style.
-rw-r--r-- | src/lib/eo/eo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index d84d110da7..80063186b3 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -1579,9 +1579,10 @@ _eo_data_scope_get(const _Eo_Object *obj, const _Eo_Class *klass) return ((char *) obj) + _eo_sz + klass->data_offset; if (EINA_UNLIKELY(klass->desc->data_size == 0)) - return NULL; + { + return NULL; + } else - { Eo_Extension_Data_Offset *doff_itr = obj->klass->extn_data_off; |