]> git.sesse.net Git - vlc/commitdiff
Fix typo
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Apr 2009 23:26:13 +0000 (01:26 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Apr 2009 23:26:13 +0000 (01:26 +0200)
modules/stream_out/record.c

index c423ebed77794678461abe3862457f3b9a8f4663..3a6026b65ff03373694c5c8c448e7c18175f7e85 100644 (file)
@@ -240,7 +240,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
         ( mdate() - p_sys->i_date_start > p_sys->i_max_wait ||
           p_sys->i_size > p_sys->i_max_size ) )
     {
-        msg_Dbg( p_stream, "Staring recording, waited %ds and %dbyte",
+        msg_Dbg( p_stream, "Starting recording, waited %ds and %dbyte",
                  (int)((mdate() - p_sys->i_date_start)/1000000), (int)p_sys->i_size );
         OutputStart( p_stream );
     }