diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-08-31 23:17:15 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2021-09-02 13:00:35 +0200 |
| commit | c17662db538387b6b0244a59f66d86acfbac97cd (patch) | |
| tree | d70b352ac60b3d143d751ece248128113f04772d /pceplib/pcep_timers.c | |
| parent | 14040553bc8db794de5f44b622c20ff8437479ff (diff) | |
pceplib: fix for -Wstrict-prototypes
Just some "void" missing between empty braces.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pceplib/pcep_timers.c')
| -rw-r--r-- | pceplib/pcep_timers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pceplib/pcep_timers.c b/pceplib/pcep_timers.c index 4c06d2b3f7..bbf9b77983 100644 --- a/pceplib/pcep_timers.c +++ b/pceplib/pcep_timers.c @@ -75,7 +75,7 @@ int timer_list_node_timer_ptr_compare(void *list_entry, void *new_entry) } /* internal util method */ -static pcep_timers_context *create_timers_context_() +static pcep_timers_context *create_timers_context_(void) { if (timers_context_ == NULL) { timers_context_ = pceplib_malloc(PCEPLIB_INFRA, |
