]> git.sesse.net Git - vlc/commitdiff
Use NULL iso 0 (is more portable)
authorJean-Paul Saman <jpsaman@videolan.org>
Sun, 6 Aug 2006 13:21:54 +0000 (13:21 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Sun, 6 Aug 2006 13:21:54 +0000 (13:21 +0000)
include/vlc_es.h

index 525987d3b0843f3bfa27a627dcd11ae7d68ff1da..675dcb3f7a759ac24edbf40f8f8d901540c93d67 100644 (file)
@@ -267,7 +267,8 @@ static inline void es_format_Clean( es_format_t *fmt )
     fmt->psz_description = NULL;
 
     if( fmt->i_extra > 0 ) free( fmt->p_extra );
-    fmt->i_extra = 0; fmt->p_extra = NULL;
+    fmt->i_extra = 0;
+    fmt->p_extra = NULL;
 
     if( fmt->video.p_palette ) free( fmt->video.p_palette );
     fmt->video.p_palette = NULL;
@@ -287,5 +288,4 @@ static inline void es_format_Clean( es_format_t *fmt )
         free(fmt->p_extra_languages);
     }
 }
-
 #endif