compat REFACTOR formatting
diff --git a/compat/compat.c b/compat/compat.c
index 71e8176..bf75c74 100644
--- a/compat/compat.c
+++ b/compat/compat.c
@@ -175,6 +175,7 @@
 strchrnul(const char *s, int c)
 {
     char *p = strchr(s, c);
+
     return p ? p : (char *)s + strlen(s);
 }