summaryrefslogtreecommitdiff
path: root/sys/include/lib/assert.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include/lib/assert.h')
-rw-r--r--sys/include/lib/assert.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/include/lib/assert.h b/sys/include/lib/assert.h
index 78ebe05..a34a14f 100644
--- a/sys/include/lib/assert.h
+++ b/sys/include/lib/assert.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -35,7 +35,7 @@
#define __assert(condition) \
if ((uintptr_t)(condition) == 0) { \
- panic("Assert \"%s\" failed (%s() at %s:%d)\n", #condition, \
+ panic("assert \"%s\" failed (%s() at %s:%d)\n", #condition, \
__func__, __FILE__, __LINE__); \
}