diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-04-23 11:23:57 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2021-04-23 12:25:47 +0200 | 
| commit | df5dfb77b5c38fc1c5b242b3df1f4bc9b3e02869 (patch) | |
| tree | 3e55d2c4d7154bed6ad54e03086ad178873173fc /pimd/pimd.c | |
| parent | 6a0eb6885b80260294673078dc97eb47b9ad753f (diff) | |
pimd: zassert => assert
No point in having pimd use zassert() while everything else uses plain
assert().
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pimd.c')
| -rw-r--r-- | pimd/pimd.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pimd.c b/pimd/pimd.c index 811dc96b56..1679480794 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -126,7 +126,7 @@ void pim_init(void)  			"%s %s: could not solve %s to group address: errno=%d: %s",  			__FILE__, __func__, PIM_ALL_PIM_ROUTERS, errno,  			safe_strerror(errno)); -		zassert(0); +		assert(0);  		return;  	}  | 
