]> git.sesse.net Git - vlc/commitdiff
<tab> police
authorAntoine Cellerier <dionoea@videolan.org>
Sat, 23 Sep 2006 20:41:59 +0000 (20:41 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sat, 23 Sep 2006 20:41:59 +0000 (20:41 +0000)
include/charset.h

index 408733ecd06b65bf2c5b6a3ee3d69ab373ba8bc0..e58ff79732e4abd32d9aae94711b0d5013d4182a 100644 (file)
@@ -55,9 +55,9 @@ VLC_EXPORT( char *, FromUTF16, ( const uint16_t * ) );
 
 static inline char *FromWide( const wchar_t *in )
 {
-       return (sizeof( wchar_t ) == 2)
-               ? FromUTF16( (const uint16_t *)in )
-               : FromUTF32( (const uint32_t *)in );
+    return (sizeof( wchar_t ) == 2)
+        ? FromUTF16( (const uint16_t *)in )
+        : FromUTF32( (const uint32_t *)in );
 }