Fix formatting of a function.

SVN revision: 28324
This commit is contained in:
Christopher Michael 2007-02-12 17:02:15 +00:00
parent 6e452edfd4
commit af9e05f2ef
1 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,10 @@
*/
#define FORWARD_NOOP_RESIZES_TO_SMART_OBJS
static Evas_Object_List* get_layer_objects_last( Evas_Layer* l )
static Evas_Object_List *
get_layer_objects_last(Evas_Layer *l)
{
if( !l || !l->objects )
return NULL;
if( !l || !l->objects ) return NULL;
return ((Evas_Object_List *)(l->objects))->last;
}