shithub: libdvdcss

Download patch

ref: 2bcd77d8847d10f3e0b2a2354e7c0949d3132dd2
parent: 3c3553f2c613f207530c6e0a97854e5824e1b292
author: Jean-Baptiste Kempf <jb@videolan.org>
date: Wed Mar 23 11:00:06 EDT 2011

Remove excessive whitespace



--- a/src/libdvdcss.h
+++ b/src/libdvdcss.h
@@ -88,12 +88,12 @@
 #include <stdarg.h>
 __forceinline void print_debug(dvdcss_t dvdcss, const char *msg,...)
 {
-	va_list args;
+    va_list args;
 
     fprintf( stderr, "libdvdcss debug: " );
-	va_start( args, msg );
+    va_start( args, msg );
     vfprintf( stderr, msg, args );
-	va_end( args );
+    va_end( args );
     fprintf( stderr, "\n" );
 }
 #else