[vlc-commits] RemoteOSD: remove tabs

Jean-Baptiste Kempf git at videolan.org
Sun Feb 24 10:57:51 CET 2019


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Feb 24 10:57:04 2019 +0100| [3325ee2b7be9a0916aa4046c13418a789126ebea] | committer: Jean-Baptiste Kempf

RemoteOSD: remove tabs

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3325ee2b7be9a0916aa4046c13418a789126ebea
---

 modules/spu/remoteosd.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/spu/remoteosd.c b/modules/spu/remoteosd.c
index 2c71df6841..bfa52a8784 100644
--- a/modules/spu/remoteosd.c
+++ b/modules/spu/remoteosd.c
@@ -398,8 +398,8 @@ static vlc_tls_t *vnc_connect( filter_t *p_filter )
         }
 
         int err = vnc_encrypt_bytes( challenge, p_sys->psz_passwd );
-	if (err != VLC_SUCCESS)
-	    return false;
+        if (err != VLC_SUCCESS)
+            return false;
 
         if( !write_exact(fd, challenge, CHALLENGESIZE ) )
         {
@@ -1327,7 +1327,7 @@ static int vnc_encrypt_bytes( unsigned char *bytes, char *passwd )
     gcry_cipher_hd_t ctx;
     int err = gcry_cipher_open( &ctx, GCRY_CIPHER_DES, GCRY_CIPHER_MODE_ECB,0);
     if (err)
-	return VLC_EGENERIC;
+        return VLC_EGENERIC;
 
     /* reverse bits of the key */
     for( unsigned i = 0 ; i < 8 ; i++ )



More information about the vlc-commits mailing list