about summary refs log tree commit diff
path: root/libdislocator/libdislocator.so.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-05 17:33:02 +0100
committervan Hauser <vh@thc.org>2020-02-05 17:33:02 +0100
commit1edc392194ee6fad60057dce4aa2c9b5e2099451 (patch)
tree66f4a701bec9442fe27f246f4ac2f0d418180735 /libdislocator/libdislocator.so.c
parent599f78a4bd9657f28a9ab0baeb9c001dbbba49a9 (diff)
downloadafl++-1edc392194ee6fad60057dce4aa2c9b5e2099451.tar.gz
afl-showmap fix
Diffstat (limited to 'libdislocator/libdislocator.so.c')
-rw-r--r--libdislocator/libdislocator.so.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/libdislocator/libdislocator.so.c b/libdislocator/libdislocator.so.c
index 21cd6f43..a426c387 100644
--- a/libdislocator/libdislocator.so.c
+++ b/libdislocator/libdislocator.so.c
@@ -66,7 +66,13 @@
 
 #if __STDC_VERSION__ < 201112L
 // use this hack if not C11
-typedef struct { long long __ll; long double __ld; } max_align_t;
+typedef struct {
+
+  long long   __ll;
+  long double __ld;
+
+} max_align_t;
+
 #endif
 
 #define ALLOC_ALIGN_SIZE (_Alignof(max_align_t))