diff options
author | Donald Sharp <sharpd@nvidia.com> | 2023-03-07 20:22:48 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 13:32:17 +0100 |
commit | 24a58196ddcff2215d382d8a677c2dcdc898e03c (patch) | |
tree | 96e008127cbe222d07aefc8b31d2176f64a1e21a /staticd | |
parent | *: Convert `struct event_master` to `struct event_loop` (diff) | |
download | frr-24a58196ddcff2215d382d8a677c2dcdc898e03c.tar.xz frr-24a58196ddcff2215d382d8a677c2dcdc898e03c.zip |
*: Convert event.h to frrevent.h
We should probably prevent any type of namespace collision
with something else.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'staticd')
-rw-r--r-- | staticd/static_main.c | 2 | ||||
-rw-r--r-- | staticd/static_zebra.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/staticd/static_main.c b/staticd/static_main.c index d6ef91fea..09f22318f 100644 --- a/staticd/static_main.c +++ b/staticd/static_main.c @@ -8,7 +8,7 @@ #include <lib/version.h> #include "getopt.h" -#include "event.h" +#include "frrevent.h" #include "command.h" #include "log.h" #include "memory.h" diff --git a/staticd/static_zebra.c b/staticd/static_zebra.c index 6c59f04ee..4f3ccde53 100644 --- a/staticd/static_zebra.c +++ b/staticd/static_zebra.c @@ -6,7 +6,7 @@ */ #include <zebra.h> -#include "event.h" +#include "frrevent.h" #include "command.h" #include "network.h" #include "prefix.h" |