diff options
author | 3gg <3gg@shellblade.net> | 2024-02-25 15:11:23 -0800 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2024-02-25 15:11:23 -0800 |
commit | d666c271bec412d700298200dbff22102c2bdd63 (patch) | |
tree | 8193d7f383d839ecd89dbd81a7e475b15fbf81b5 /error/src/error.c | |
parent | f24912296c473ac15c12e65c97007fe3ece87dfa (diff) |
Simpler error logging API.
Diffstat (limited to 'error/src/error.c')
-rw-r--r-- | error/src/error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/error/src/error.c b/error/src/error.c index ccd850d..81fb056 100644 --- a/error/src/error.c +++ b/error/src/error.c | |||
@@ -1,5 +1,5 @@ | |||
1 | #include "error.h" | 1 | #include "error.h" |
2 | 2 | ||
3 | xlstring gfx_error; | 3 | xlstring g_error; |
4 | 4 | ||
5 | const char* get_error(void) { return xlstring_cstr(&gfx_error); } | 5 | const char* get_error(void) { return xlstring_cstr(&g_error); } |