From d8423eff563bc69f50eb1a4a435db47b7e9e99f8 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Sun, 3 May 2020 02:08:33 +0200 Subject: [PATCH] Fix space at end of file. --- src/utils/lib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/lib.h b/src/utils/lib.h index ebd1d0833..eadad2522 100644 --- a/src/utils/lib.h +++ b/src/utils/lib.h @@ -309,4 +309,5 @@ char *strformat(const char *var, ...) __printflike(1, 2); #define MAX(_a, _b) ({ \ typeof(_a) __a__ = (_a); \ typeof(_b) __b__ = (_b); \ - __a__ > __b__ ? __a__ : __b__; }) \ No newline at end of file + __a__ > __b__ ? __a__ : __b__; }) +