diff --git a/src/d_main.c b/src/d_main.c index b386f1f2c..f2e9ed0c6 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -74,7 +74,7 @@ int snprintf(char *str, size_t n, const char *fmt, ...); #include "m_cond.h" // condition initialization #include "fastcmp.h" #include "keys.h" -#include "filesrch.h" // mainwadstally +#include "filesrch.h" // refreshdirmenu, mainwadstally #ifdef CMAKECONFIG #include "config.h" diff --git a/src/string.c b/src/string.c index 5065553ae..1e2c14ac2 100644 --- a/src/string.c +++ b/src/string.c @@ -56,8 +56,8 @@ size_t strlcpy(char *dst, const char *src, size_t siz) // stack overflow, eep... char* stristr(char* haystack, const char* needle) { - char* p1 = haystack ; - const char* p2 = needle ; + char* p1 = haystack; + const char* p2 = needle; char* r = ((*p2 == 0) ? haystack : 0); while (*p1 != 0 && *p2 != 0)