diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2016-12-06 14:33:24 +0100 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2016-12-06 17:16:24 +0100 |
commit | e90622ec41460165192b98ec2fe1aacda61937bc (patch) | |
tree | bc3f0fa2ad3856cb2fed947244adaa3662c83db8 /src/lib/eo/eo_add_fallback.c | |
parent | 9d37fa2b8be5abcadaad14a7c4b3fe02afafc0ac (diff) |
all: use void if we really want to make sure we do not accept parameters
In C we need this to make clear that we really do not accept parameters.
Found by the smatch source code matcher. I had run and fixed this before
but it seems to creep in again over time.
Diffstat (limited to 'src/lib/eo/eo_add_fallback.c')
-rw-r--r-- | src/lib/eo/eo_add_fallback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/eo_add_fallback.c b/src/lib/eo/eo_add_fallback.c index e00d7e829a..c38a827b28 100644 --- a/src/lib/eo/eo_add_fallback.c +++ b/src/lib/eo/eo_add_fallback.c | |||
@@ -64,7 +64,7 @@ _eo_call_stack_mem_free(void *ptr, size_t size) | |||
64 | } | 64 | } |
65 | 65 | ||
66 | static Efl_Object_Call_Stack * | 66 | static Efl_Object_Call_Stack * |
67 | _eo_call_stack_create() | 67 | _eo_call_stack_create(void) |
68 | { | 68 | { |
69 | Efl_Object_Call_Stack *stack; | 69 | Efl_Object_Call_Stack *stack; |
70 | 70 | ||