util: thrd_err_as_string: fix alignment

This commit is contained in:
Daniel Eklöf 2020-05-03 12:40:40 +02:00
parent 7525fa20c2
commit 729a57d3a8
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
util.h
View file

@ -10,7 +10,7 @@ static inline const char *
thrd_err_as_string(int thrd_err)
{
switch (thrd_err) {
case thrd_success: return "success";
case thrd_success: return "success";
case thrd_busy: return "busy";
case thrd_nomem: return "no memory";
case thrd_timedout: return "timedout";