ffserver: be explicit on failed fork() msg

Signed-off-by: 's avatarReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
parent 5a31f231
...@@ -442,7 +442,7 @@ static void start_children(FFServerStream *feed) ...@@ -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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment