summaryrefslogtreecommitdiffstats
path: root/tests/isisd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2022-12-11 13:51:16 +0100
committerDonald Sharp <sharpd@nvidia.com>2023-03-24 13:32:17 +0100
commitde2754be3a2658363828eeb3a83579ad3bad0f99 (patch)
tree425608f8acab16eb4914148f8262db241dd82edf /tests/isisd
parentlib: Convert thread_type to event_type and make an enum (diff)
downloadfrr-de2754be3a2658363828eeb3a83579ad3bad0f99.tar.xz
frr-de2754be3a2658363828eeb3a83579ad3bad0f99.zip
*: Convert thread_fetch and thread_call to event_fetch and event_call
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'tests/isisd')
-rw-r--r--tests/isisd/test_isis_spf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/isisd/test_isis_spf.c b/tests/isisd/test_isis_spf.c
index 3068ba26d..d7465cc8f 100644
--- a/tests/isisd/test_isis_spf.c
+++ b/tests/isisd/test_isis_spf.c
@@ -549,8 +549,8 @@ int main(int argc, char **argv)
vty_stdio(vty_do_exit);
/* Fetch next active thread. */
- while (thread_fetch(master, &thread))
- thread_call(&thread);
+ while (event_fetch(master, &thread))
+ event_call(&thread);
/* Not reached. */
exit(0);