Remove \n in U_DEBUG_MSG

This commit is contained in:
savalet
2025-04-16 23:14:22 +02:00
parent 9eadb049ac
commit e83eb5cf10
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@
#define DEBUG_INTERNAL(fmt, ...) ERR(HEAD_FMT fmt, HEAD, __VA_ARGS__)
#define U_DEBUG(fmt, ...) DEBUG_INTERNAL(fmt, __VA_ARGS__)
#define U_DEBUG_MSG(msg) DEBUG_INTERNAL("%s\n", msg)
#define U_DEBUG_MSG(msg) DEBUG_INTERNAL("%s", msg)
#define U_DEBUG_CALL(func, ...) func(__VA_ARGS__)
#else

View File

@@ -11,6 +11,6 @@
int main(int ac __attribute__((unused)), char **av __attribute__((unused)),
char **env)
{
U_DEBUG_MSG("Debug mode activated.");
U_DEBUG_MSG("Debug mode activated.\n");
return shell(env);
}