Commit 4caee403 authored by Benjamin Pracht's avatar Benjamin Pracht

typos

parent ed59877c
......@@ -384,7 +384,7 @@ int E_(Open) ( vlc_object_t *p_this )
((u_srate) < frontend_info.symbol_rate_min) )
{
msg_Warn( p_input, "invalid symbol rate, using default one" );
u_srate = config_GetInt( p_input, "symbol-rate"s );
u_srate = config_GetInt( p_input, "symbol-rate" );
if ( ((u_srate) > frontend_info.symbol_rate_max) ||
((u_srate) < frontend_info.symbol_rate_min) )
{
......
......@@ -443,7 +443,7 @@ int ioctl_SetQAMFrontend (input_thread_t * p_input, struct dvb_frontend_paramete
{
close(front);
# ifdef HAVE_ERRNO_H
msg_Err(p_input, "DVB-C: tuning channel failed (frontend returned %d:%s)", ret, strerrror(errno));
msg_Err(p_input, "DVB-C: tuning channel failed (frontend returned %d:%s)", ret, strerror(errno));
# else
msg_Err(p_input, "DVB-C: tuning channel failed (frontend returned %d)", ret);
# endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment