diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-29 17:01:19 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-29 17:01:19 +0200 |
commit | 1c7c0bd747c839fb1e449e98cec942894821addf (patch) | |
tree | 01ac940d42dcfc767afa191efd7ecbd0ab73dcc5 /shared/errcatch.h | |
parent | 59802547c336d61aa7e950414a3f44180e211974 (diff) |
`make format`
Diffstat (limited to 'shared/errcatch.h')
-rw-r--r-- | shared/errcatch.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shared/errcatch.h b/shared/errcatch.h index 9b14cc2..7f298c1 100644 --- a/shared/errcatch.h +++ b/shared/errcatch.h @@ -4,8 +4,8 @@ #include <stdint.h> -#include "consts.h" #include "bool.h" +#include "consts.h" #define W2_E_TYPE_MASK (0b11 << 6) @@ -95,4 +95,3 @@ void w2_errcatch_throw_msg(w2_e_errorcode code, uint16_t length, const char *mes * TODO: doesn't handle null pointers from malloc */ w2_s_error *w2_alloc_error(w2_e_errorcode code, uint16_t length, const char *message); - |