1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

core: avoid dynamic format strings for Clang -Werror=format-security

This commit is contained in:
Albert Lee
2025-05-21 22:22:16 +00:00
committed by Sébastien Helleu
parent 47f7518c1f
commit e8ce75f20c
+3 -6
View File
@@ -49,23 +49,20 @@ daemonize (void)
pid_t pid;
int fd, i;
printf (_("Running WeeChat in background..."));
printf (" ");
printf ("%s ", _("Running WeeChat in background..."));
pid = fork ();
if (pid < 0)
{
printf (_("fork error"));
printf ("\n");
printf ("%s\n", _("fork error"));
exit (EXIT_FAILURE);
}
if (pid > 0)
{
/* parent process */
printf (_("OK"));
printf ("\n");
printf ("%s\n", _("OK"));
exit (EXIT_SUCCESS);
}