mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
staticd: Fix error reported by checkpatch
This commit fixes the following error: ``` 20-Apr-2025 08:10:54 Report for static_srv6.c | 2 issues 20-Apr-2025 08:10:54 =============================================== 20-Apr-2025 08:10:54 < ERROR: Bad function definition - void static_zebra_request_srv6_sids() should probably be void static_zebra_request_srv6_sids(void) 20-Apr-2025 08:10:54 < #156: FILE: /tmp/f1-3023993/static_srv6.c:156: ``` Signed-off-by: Carmine Scarpitta <cscarpit@cisco.com>
This commit is contained in:
parent
2985bce0a6
commit
1cd578ff85
|
@ -153,7 +153,7 @@ void delete_static_srv6_sid(void *val)
|
|||
static_srv6_sid_free((struct static_srv6_sid *)val);
|
||||
}
|
||||
|
||||
void static_zebra_request_srv6_sids()
|
||||
void static_zebra_request_srv6_sids(void)
|
||||
{
|
||||
struct static_srv6_sid *sid;
|
||||
struct listnode *node;
|
||||
|
|
Loading…
Reference in a new issue