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 /lib/thread.c | |
parent | pimd: zassert => assert (diff) | |
download | frr-642ac49da40a196c4e4ad74128de2056237d3cb4.tar.xz frr-642ac49da40a196c4e4ad74128de2056237d3cb4.zip |
*: remaining zassert => assert
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/thread.c')
-rw-r--r-- | lib/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thread.c b/lib/thread.c index 3d8b54467..26619af6c 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -664,7 +664,7 @@ static int time_hhmmss(char *buf, int buf_size, long sec) long mm; int wr; - zassert(buf_size >= 8); + assert(buf_size >= 8); hh = sec / 3600; sec %= 3600; |