Browse code

ffserver: fix line wrapping on function decls

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>

Reynaldo H. Verdejo Pinochet authored on 2015/10/03 06:01:24
Showing 1 changed files
... ...
@@ -685,8 +685,8 @@ static int ffserver_parse_config_global(FFServerConfig *config, const char *cmd,
685 685
     return 0;
686 686
 }
687 687
 
688
-static int ffserver_parse_config_feed(FFServerConfig *config, const char *cmd, const char **p,
689
-                                      FFServerStream **pfeed)
688
+static int ffserver_parse_config_feed(FFServerConfig *config, const char *cmd,
689
+                                      const char **p, FFServerStream **pfeed)
690 690
 {
691 691
     FFServerStream *feed;
692 692
     char arg[1024];
... ...
@@ -793,7 +793,8 @@ static int ffserver_parse_config_feed(FFServerConfig *config, const char *cmd, c
793 793
     return 0;
794 794
 }
795 795
 
796
-static int ffserver_parse_config_stream(FFServerConfig *config, const char *cmd, const char **p,
796
+static int ffserver_parse_config_stream(FFServerConfig *config, const char *cmd,
797
+                                        const char **p,
797 798
                                         FFServerStream **pstream)
798 799
 {
799 800
     char arg[1024], arg2[1024];