1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: missed string specifier

This commit is contained in:
Zdenek Kabelac 2019-04-17 11:29:35 +02:00
parent 44cfa55843
commit 8fbaa6d9a5

View File

@ -656,7 +656,7 @@ void daemon_start(daemon_state s)
sigprocmask(SIG_SETMASK, &new_set, NULL); sigprocmask(SIG_SETMASK, &new_set, NULL);
if (_shutdown_requested && !s.threads->next) { if (_shutdown_requested && !s.threads->next) {
sigprocmask(SIG_SETMASK, &old_set, NULL); sigprocmask(SIG_SETMASK, &old_set, NULL);
INFO(&s, "shutdown requested", s.name); INFO(&s, "%s shutdown requested", s.name);
break; break;
} }
ret = pselect(s.socket_fd + 1, &in, NULL, NULL, _get_timeout(s), &old_set); ret = pselect(s.socket_fd + 1, &in, NULL, NULL, _get_timeout(s), &old_set);