aboutsummaryrefslogtreecommitdiff
path: root/src/survive.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/survive.c')
-rw-r--r--src/survive.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/survive.c b/src/survive.c
index 2a7aad1..1a782a2 100644
--- a/src/survive.c
+++ b/src/survive.c
@@ -86,9 +86,8 @@ void survive_verify_FLT_size(uint32_t user_size) {
if (sizeof(FLT) != user_size) {
fprintf(stderr, "FLT type incompatible; the shared library libsurvive has FLT size %lu vs user program %u\n",
(unsigned long)sizeof(FLT), user_size);
- fprintf(stderr,
- "Add '#define FLT %s' before including survive.h or recompile the shared library with the "
- "appropriate flag. \n",
+ fprintf(stderr, "Add '#define FLT %s' before including survive.h or recompile the shared library with the "
+ "appropriate flag. \n",
sizeof(FLT) == sizeof(double) ? "double" : "float");
exit(-1);
}