diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-04-23 11:25:44 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2021-04-23 12:25:51 +0200 | 
| commit | 642ac49da40a196c4e4ad74128de2056237d3cb4 (patch) | |
| tree | 14831ec31bc6ec830744a06d8a8625cfec6604e0 /pbrd/pbr_zebra.c | |
| parent | df5dfb77b5c38fc1c5b242b3df1f4bc9b3e02869 (diff) | |
*: remaining zassert => assert
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pbrd/pbr_zebra.c')
| -rw-r--r-- | pbrd/pbr_zebra.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/pbrd/pbr_zebra.c b/pbrd/pbr_zebra.c index 4b73e13c27..eb41bf6043 100644 --- a/pbrd/pbr_zebra.c +++ b/pbrd/pbr_zebra.c @@ -50,8 +50,8 @@ struct pbr_interface *pbr_if_new(struct interface *ifp)  {  	struct pbr_interface *pbr_ifp; -	zassert(ifp); -	zassert(!ifp->info); +	assert(ifp); +	assert(!ifp->info);  	pbr_ifp = XCALLOC(MTYPE_PBR_INTERFACE, sizeof(*pbr_ifp));  | 
