Commit 7999c842 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Andrei Vagin

page_server_async_read: fix pr_perror usage

Le sigh.

travis-ci: success for more pr_perror() usage fixes
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 479c778a
......@@ -1014,7 +1014,7 @@ int page_server_async_read(void)
ret = recv(page_server_sk, buf, need, MSG_DONTWAIT);
if (ret < 0) {
pr_perror("Error reading async data from page server\n");
pr_perror("Error reading async data from page server");
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment