diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 12:47:44 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 13:31:16 -0600 |
commit | 3c512ac435bb054e56b06a93adf7e74e4ce352fc (patch) | |
tree | d2569fec5c9ed8c094d358c541484fffb83ec6c7 /libmisc | |
parent | 7cbd849648d41c8b55b5b5fe618b8d20e75db868 (diff) |
Fix some funny indents
Diffstat (limited to 'libmisc')
-rw-r--r-- | libmisc/assert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmisc/assert.c b/libmisc/assert.c index cb3a270..410ec21 100644 --- a/libmisc/assert.c +++ b/libmisc/assert.c @@ -11,8 +11,8 @@ #ifndef NDEBUG void __assert_msg_fail(const char *expr, - const char *file, unsigned int line, const char *func, - const char *msg) { + const char *file, unsigned int line, const char *func, + const char *msg) { static bool in_fail = false; if (!in_fail) { in_fail = true; |