cosmetics: Remove trailing whitespace and tabs.
authorDiego Biurrun <diego@biurrun.de>
Thu, 26 Apr 2007 19:27:32 +0000 (19:27 +0000)
committerDiego Biurrun <diego@biurrun.de>
Thu, 26 Apr 2007 19:27:32 +0000 (19:27 +0000)
Originally committed as revision 8838 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffinstall.nsi
ffserver.c
libavformat/os_support.c

index f483b0174f659230ce107140aff95f8a2528fc29..d3198a04eb941a185de13cca9469f5678c3d2f32 100644 (file)
@@ -32,7 +32,7 @@ Section "Install"
   File ".\ffplay.exe"
   File ".\COPYING"
   File ".\CREDITS"
-  
+
   ; documentation
   SetOutPath $INSTDIR\doc
   File ".\doc\faq.html"
@@ -58,7 +58,7 @@ Section Uninstall
   Delete "$INSTDIR\ffplay.exe"
   Delete "$INSTDIR\COPYING"
   Delete "$INSTDIR\CREDITS"
-  
+
   ; delete documentation
   Delete "$INSTDIR\doc\faq.html"
   Delete "$INSTDIR\ffmpeg-doc.html"
index 1c3a91e7e9288a47ef51e2b387af0810e86a325f..c34e47a93c2a6183da8eb0c76f7c562c0f695ca7 100644 (file)
@@ -4281,7 +4281,7 @@ static int parse_ffconfig(const char *filename)
             }
 
             get_arg(arg, sizeof(arg), &p);
-           
+
             if (resolve_host(&acl.first, arg) != 0) {
                 fprintf(stderr, "%s:%d: ACL refers to invalid host or ip address '%s'\n",
                         filename, line_num, arg);
index 9dddab2f156e07074a5c2dd3a1df949b15fe9dc0..da303be49cbdb8687590f332be52fd8eec80fefd 100644 (file)
@@ -105,12 +105,12 @@ done:
 int resolve_host(struct in_addr *sin_addr, const char *hostname)
 {
     struct hostent *hp;
-    
+
     if (!inet_aton(hostname, sin_addr)) {
-       hp = gethostbyname(hostname);
-       if (!hp)
-           return -1;
-       memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
+        hp = gethostbyname(hostname);
+        if (!hp)
+            return -1;
+        memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
     }
     return 0;
 }