From 729a57d3a89b30ecaf3210532f798a3107fd3242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 3 May 2020 12:40:40 +0200 Subject: [PATCH] util: thrd_err_as_string: fix alignment --- util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.h b/util.h index 291a68d7..d2059379 100644 --- a/util.h +++ b/util.h @@ -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";