Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
a095d6b7
Commit
a095d6b7
authored
May 27, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not use a GNU extension in public headers
parent
2a64087b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/vlc_input.h
include/vlc_input.h
+2
-2
No files found.
include/vlc_input.h
View file @
a095d6b7
...
...
@@ -35,7 +35,7 @@
#include <vlc_epg.h>
#include <vlc_events.h>
#include <string.h>
/* str
case
str() */
#include <string.h>
/* strstr() */
struct
vlc_meta_t
;
...
...
@@ -173,7 +173,7 @@ static inline bool input_item_MetaMatch( input_item_t *p_i, vlc_meta_type_t meta
return
false
;
}
const
char
*
meta
=
vlc_meta_Get
(
p_i
->
p_meta
,
meta_type
);
bool
ret
=
meta
&&
str
case
str
(
meta
,
psz
);
bool
ret
=
meta
&&
strstr
(
meta
,
psz
);
vlc_mutex_unlock
(
&
p_i
->
lock
);
return
ret
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment