From 842e54b0a0868ec1053579469be13a5e1cee10b2 Mon Sep 17 00:00:00 2001 From: Jagger Date: Sun, 15 May 2016 02:32:50 +0200 Subject: [PATCH] LOG->PLOG --- pid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pid.c b/pid.c index f79aa55..a5236fa 100644 --- a/pid.c +++ b/pid.c @@ -37,7 +37,7 @@ bool pidInitNs(struct nsjconf_t * nsjconf) pid_t pid = syscall(__NR_clone, (uintptr_t) CLONE_FS, NULL, NULL, NULL, (uintptr_t) 0); if (pid == -1) { - LOG_E("Couldn't create a dummy init process"); + PLOG_E("Couldn't create a dummy init process"); return false; } if (pid > 0) {