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

dmeventd: drop stack

This commit is contained in:
Zdenek Kabelac 2015-06-15 14:38:44 +02:00
parent 9da07f1d3e
commit 3d5f7f90c8

View File

@ -1671,10 +1671,8 @@ static void _cleanup_unused_threads(void)
if (ret == ESRCH) { if (ret == ESRCH) {
thread->status = DM_THREAD_DONE; thread->status = DM_THREAD_DONE;
} else if (ret) { } else if (ret) {
syslog(LOG_ERR, syslog(LOG_ERR, "Unable to terminate thread: %s",
"Unable to terminate thread: %s\n", strerror(ret));
strerror(-ret));
stack;
} }
break; break;
} }