From 08c3dba71902b62f32f526527adf0d28569bdb02 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 26 Jan 2023 10:37:39 -0500 Subject: [PATCH] lib: Forward declaration of a struct does not need to have data type Signed-off-by: Donald Sharp --- lib/frrscript.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/frrscript.h b/lib/frrscript.h index 7fa01f70d1..afaab66f1b 100644 --- a/lib/frrscript.h +++ b/lib/frrscript.h @@ -34,7 +34,7 @@ extern "C" { #endif /* Forward declarations */ -extern struct zebra_dplane_ctx ctx; +struct zebra_dplane_ctx; extern void lua_pushzebra_dplane_ctx(lua_State *L, const struct zebra_dplane_ctx *ctx); extern void lua_decode_zebra_dplane_ctx(lua_State *L, int idx,