blob: 265688d9a5ea260dac31240cd2bbe0f48345bfa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-lib_video.c,v 1.1 2019/07/02 20:52:13 nia Exp $
Remove undefined references to missing symbol.
--- lib/video.c.orig 2017-11-24 15:29:17.000000000 +0000
+++ lib/video.c
@@ -719,7 +719,7 @@ static int get_filter_str( vlc_object_t
module_t *p_obj = module_find( psz_name );
if( !p_obj )
{
- msg_Err( p_parent, "Unable to find filter module \"%s\".", psz_name );
+// msg_Err( p_parent, "Unable to find filter module \"%s\".", psz_name );
return VLC_EGENERIC;
}
@@ -737,7 +737,7 @@ static int get_filter_str( vlc_object_t
}
else
{
- msg_Err( p_parent, "Unknown video filter type." );
+// msg_Err( p_parent, "Unknown video filter type." );
return VLC_EGENERIC;
}
|