summaryrefslogtreecommitdiff
path: root/docs/application/error.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/application/error.md')
-rw-r--r--docs/application/error.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/application/error.md b/docs/application/error.md
index dcf0a34..77a97cb 100644
--- a/docs/application/error.md
+++ b/docs/application/error.md
@@ -6,9 +6,9 @@
```c
typedef struct _kpl_error {
- KPL_POOL_HEADER(_kpl_error);
- int32_t line;
+ KPL_SLAB_HEADER(_kpl_error);
char *file, *function;
kpl_class class;
+ int32_t line;
} kpl_error;
```