ffserver: be explicit on failed fork() msg

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
pull/166/head
Reynaldo H. Verdejo Pinochet 9 years ago
parent 5a31f2318b
commit eb68c35670
  1. 2
      ffserver.c

@ -442,7 +442,7 @@ static void start_children(FFServerStream *feed)
feed->pid = fork();
if (feed->pid < 0) {
http_log("Unable to create children\n");
http_log("Unable to create children: %s\n", strerror(errno));
exit(1);
}

Loading…
Cancel
Save