summaryrefslogtreecommitdiff
path: root/shared/errcatch.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-29 17:01:19 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-29 17:01:19 +0200
commit1c7c0bd747c839fb1e449e98cec942894821addf (patch)
tree01ac940d42dcfc767afa191efd7ecbd0ab73dcc5 /shared/errcatch.c
parent59802547c336d61aa7e950414a3f44180e211974 (diff)
`make format`
Diffstat (limited to 'shared/errcatch.c')
-rw-r--r--shared/errcatch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shared/errcatch.c b/shared/errcatch.c
index ff7fc93..76af10a 100644
--- a/shared/errcatch.c
+++ b/shared/errcatch.c
@@ -6,7 +6,7 @@
w2_s_error *g_w2_error_buffer[W2_ERROR_BUFFER_SIZE] = {};
uint8_t g_w2_error_index = 0;
uint8_t g_w2_error_offset = 0;
-bool g_w2_error_buffer_full = 0;
+bool g_w2_error_buffer_full = 0;
bool g_w2_error_uncaught = 0;
void w2_errcatch_main() {
@@ -43,4 +43,3 @@ void w2_errcatch_throw_msg(w2_e_errorcode code, uint16_t length, const char *mes
if (g_w2_error_buffer_full) return;
g_w2_error_index = next_index;
}
-