summaryrefslogtreecommitdiff
path: root/lib/thread.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2021-04-23 11:25:44 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2021-04-23 12:25:51 +0200
commit642ac49da40a196c4e4ad74128de2056237d3cb4 (patch)
tree14831ec31bc6ec830744a06d8a8625cfec6604e0 /lib/thread.c
parentdf5dfb77b5c38fc1c5b242b3df1f4bc9b3e02869 (diff)
*: remaining zassert => assert
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/thread.c')
-rw-r--r--lib/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thread.c b/lib/thread.c
index 3d8b544678..26619af6c8 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;