From bf039b77356e6eb2bbb0d9104900cb09cd60764a Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Thu, 26 Nov 2015 17:25:19 +0300 Subject: [PATCH] zdtm: Fix compilation after vfork test adding Signed-off-by: Pavel Emelyanov --- test/zdtm/live/static/vfork00.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/zdtm/live/static/vfork00.c b/test/zdtm/live/static/vfork00.c index 8a54defae..d61bb35f1 100644 --- a/test/zdtm/live/static/vfork00.c +++ b/test/zdtm/live/static/vfork00.c @@ -23,7 +23,7 @@ int main(int argc, char ** argv) * in the child */ pid = fork(); if (pid < 0) { - err("fork failed: %m"); + pr_err("fork failed: %m"); exit(1); }