LOG->PLOG

This commit is contained in:
Jagger 2016-05-15 02:32:50 +02:00
parent f06084bbea
commit 842e54b0a0

2
pid.c
View File

@ -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); pid_t pid = syscall(__NR_clone, (uintptr_t) CLONE_FS, NULL, NULL, NULL, (uintptr_t) 0);
if (pid == -1) { if (pid == -1) {
LOG_E("Couldn't create a dummy init process"); PLOG_E("Couldn't create a dummy init process");
return false; return false;
} }
if (pid > 0) { if (pid > 0) {