raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=96958909bae0cbb6f45603c0d001f48e0ac1bb32

commit 96958909bae0cbb6f45603c0d001f48e0ac1bb32
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Fri Jul 8 18:24:06 2016 +0900

    elm_prefs_cc - fix correct struct size calculation
    
    use correct struct type even though previous struct was the same size
    and it wasnt an actual bug - but a potential one.
---
 src/bin/elementary/elm_prefs_cc_handlers.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/elementary/elm_prefs_cc_handlers.c 
b/src/bin/elementary/elm_prefs_cc_handlers.c
index 93577ed..5df036d 100644
--- a/src/bin/elementary/elm_prefs_cc_handlers.c
+++ b/src/bin/elementary/elm_prefs_cc_handlers.c
@@ -739,7 +739,7 @@ object_handler_num(void)
 int
 statement_handler_num(void)
 {
-   return sizeof(statement_handlers) / sizeof (New_Object_Handler);
+   return sizeof(statement_handlers) / sizeof (New_Statement_Handler);
 }
 
 static void

-- 


Reply via email to