ffserver: be explicit on failed fork() msg
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
This commit is contained in:
@@ -442,7 +442,7 @@ static void start_children(FFServerStream *feed)
|
|||||||
|
|
||||||
feed->pid = fork();
|
feed->pid = fork();
|
||||||
if (feed->pid < 0) {
|
if (feed->pid < 0) {
|
||||||
http_log("Unable to create children\n");
|
http_log("Unable to create children: %s\n", strerror(errno));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user