]> git.sesse.net Git - vlc/commitdiff
coding style fix
authorJean-Paul Saman <jpsaman@videolan.org>
Tue, 16 May 2006 16:04:06 +0000 (16:04 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Tue, 16 May 2006 16:04:06 +0000 (16:04 +0000)
modules/control/telnet.c

index 751c501920121a8669a84f376ed294653c5c6d51..ce0f45c250115e2b6e4732a3af0fbd19e9f98d80 100644 (file)
@@ -137,7 +137,7 @@ struct intf_sys_t
  * option is missing from --telnet-host.
  */
 static int getPort(intf_thread_t *p_intf, vlc_url_t url, int i_port)
-    {
+{
     // Print error if two different ports have been specified
     if (url.i_port != 0  &&
         i_port != TELNETPORT_DEFAULT && 
@@ -154,7 +154,6 @@ static int getPort(intf_thread_t *p_intf, vlc_url_t url, int i_port)
     {
            return url.i_port;
     }
-    // return default
     return i_port;
 }