]> git.sesse.net Git - vlc/commitdiff
video_filter/mosaic.c: you should change the order of the arguments as well
authorSigmund Augdal Helberg <sigmunau@videolan.org>
Sat, 21 May 2005 10:14:10 +0000 (10:14 +0000)
committerSigmund Augdal Helberg <sigmunau@videolan.org>
Sat, 21 May 2005 10:14:10 +0000 (10:14 +0000)
when you change the order of the format string. thanks to blackjack for
noticing

modules/video_filter/mosaic.c

index f58da5ba49c0037d42a85e4d18d49946dcd63088..34c6d11bf6e41d947451ddce75c3b1d63940a64f 100644 (file)
@@ -413,8 +413,8 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
             }
             else
                 msg_Dbg( p_filter, "too late picture for %s (" I64Fd ")",
-                         date - p_es->p_picture->date - p_sys->i_delay,
-                         p_es->psz_id );
+                         p_es->psz_id,
+                         date - p_es->p_picture->date - p_sys->i_delay );
         }
 
         if ( p_sys->i_order_length == 0 )