diff libmpdemux/mp3_hdr.h @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents d643e4643313
children 7b4f8ecdc33b
line wrap: on
line diff
--- a/libmpdemux/mp3_hdr.h	Tue May 12 19:25:35 2009 +0000
+++ b/libmpdemux/mp3_hdr.h	Wed May 13 02:58:57 2009 +0000
@@ -26,7 +26,7 @@
 #define mp_decode_mp3_header(hbuf)  mp_get_mp3_header(hbuf,NULL,NULL,NULL,NULL,NULL)
 
 static inline int mp_check_mp3_header(unsigned int head){
-    if( (head & 0x0000e0ff) != 0x0000e0ff ||  
+    if( (head & 0x0000e0ff) != 0x0000e0ff ||
         (head & 0x00fc0000) == 0x00fc0000) return 0;
     if(mp_decode_mp3_header((unsigned char*)(&head))<=0) return 0;
     return 1;