]> git.sesse.net Git - vlc/commitdiff
Fixed 2 missing "%s" -> "%m"
authorLaurent Aimar <fenrir@videolan.org>
Mon, 8 Oct 2007 18:59:16 +0000 (18:59 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 8 Oct 2007 18:59:16 +0000 (18:59 +0000)
modules/access/dvb/linux_dvb.c

index b0f5c9df5e2099a626eeac9a5e8e71cb6ae48200..f70a57eb577cafe5af97895dcfd0dbabf6b31f1d 100644 (file)
@@ -1168,7 +1168,7 @@ static int FrontendSetOFDM( access_t * p_access )
     /* Now send it all to the frontend device */
     if( (ret = ioctl( p_sys->i_frontend_handle, FE_SET_FRONTEND, &fep )) < 0 )
     {
-        msg_Err( p_access, "DVB-T: setting frontend failed (%d): %s", ret );
+        msg_Err( p_access, "DVB-T: setting frontend failed (%d): %m", ret );
         return -1;
     }
 
@@ -1204,7 +1204,7 @@ static int FrontendSetATSC( access_t *p_access )
     /* Now send it all to the frontend device */
     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_SET_FRONTEND, &fep )) < 0 )
     {
-        msg_Err( p_access, "ATSC: setting frontend failed (%d): %s", i_ret );
+        msg_Err( p_access, "ATSC: setting frontend failed (%d): %m", i_ret );
         return VLC_EGENERIC;
     }