Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/P-p-H-d/mlib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Pelissier <Patrick.Pelissier@gmail.com>2022-12-23 13:48:15 +0300
committerPatrick Pelissier <Patrick.Pelissier@gmail.com>2022-12-23 13:48:15 +0300
commit89d4db174e0017ff93f13be34b3afe6a9dc54434 (patch)
treec401f8cce2f1d02df1c23709caf7c311f2d8209b /m-funcobj.h
parentf5bbc0a7fb21e9a5dd85f73ab10f613b80e2b172 (diff)
Fix format
Diffstat (limited to 'm-funcobj.h')
-rw-r--r--m-funcobj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/m-funcobj.h b/m-funcobj.h
index f523611..5cf454d 100644
--- a/m-funcobj.h
+++ b/m-funcobj.h
@@ -311,7 +311,7 @@
) \
{ \
/* Let's go through an uintptr_t to avoid [broken] aliasing detection by compiler */ \
- uintptr_t __self = (uintptr_t) _self; \
+ uintptr_t __self = (uintptr_t) _self; \
struct M_C(name, _s) *self = (struct M_C(name, _s) *)(void*)__self; \
(void) self; /* maybe unused */ \
callback_core; \