mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-06 07:15:30 -04:00
util: thrd_err_as_string: fix alignment
This commit is contained in:
parent
7525fa20c2
commit
729a57d3a8
1 changed files with 1 additions and 1 deletions
2
util.h
2
util.h
|
|
@ -10,7 +10,7 @@ static inline const char *
|
||||||
thrd_err_as_string(int thrd_err)
|
thrd_err_as_string(int thrd_err)
|
||||||
{
|
{
|
||||||
switch (thrd_err) {
|
switch (thrd_err) {
|
||||||
case thrd_success: return "success";
|
case thrd_success: return "success";
|
||||||
case thrd_busy: return "busy";
|
case thrd_busy: return "busy";
|
||||||
case thrd_nomem: return "no memory";
|
case thrd_nomem: return "no memory";
|
||||||
case thrd_timedout: return "timedout";
|
case thrd_timedout: return "timedout";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue