projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
984f5ef
)
e: fix warning, patch by dh.
author
Cedric BAIL
<cedric.bail@free.fr>
Thu, 3 May 2012 08:47:48 +0000
(08:47 +0000)
committer
Cedric BAIL
<cedric.bail@free.fr>
Thu, 3 May 2012 08:47:48 +0000
(08:47 +0000)
SVN revision: 70690
src/bin/e_container.c
patch
|
blob
|
history
diff --git
a/src/bin/e_container.c
b/src/bin/e_container.c
index
a80fc82
..
9889487
100644
(file)
--- a/
src/bin/e_container.c
+++ b/
src/bin/e_container.c
@@
-1113,8
+1113,11
@@
_e_container_shape_change_call(E_Container_Shape *es, E_Container_Shape_Change c
static int
_e_container_cb_zone_sort(const void *data1, const void *data2)
{
- E_Zone *z1 = data1, *z2 = data2;
-
+ const E_Zone *z1, *z2;
+
+ z1 = data1;
+ z2 = data2;
+
return z2->num - z1->num;
}