Remove unnecessary error message conversion. 08/150308/1
authorKunhoon Baik <knhoon.baik@samsung.com>
Fri, 15 Sep 2017 05:09:34 +0000 (14:09 +0900)
committerKunhoon Baik <knhoon.baik@samsung.com>
Fri, 15 Sep 2017 05:09:34 +0000 (14:09 +0900)
Change-Id: I78415d5a941a22c947666cb6afe4dde65082e111

src/system-recovery/process-util.c

index 861e411..a5a34b9 100644 (file)
@@ -80,8 +80,7 @@ int process_exec(process_exec_type sync, char *argv[])
                                LOGD("%d stopped by signal %d\n", pid,
                                                WSTOPSIG(status));
                } else
-                       LOGD("%d waitpid() failed : %s\n", pid,
-                                       strerror(errno));
+                       LOGD("%d waitpid() failed - %d\n", pid, errno);
        }
 
        if (sigaction(SIGCHLD, &oldact, NULL) < 0)