Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
7e2851ea
Commit
7e2851ea
authored
Oct 04, 2004
by
gbazin
Browse files
* src/input/subtitles.c: strcoll is not available on wince.
parent
293d390a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/input/subtitles.c
View file @
7e2851ea
...
...
@@ -145,7 +145,11 @@ static int compare_sub_priority( const void *a, const void *b )
return
1
;
}
#ifndef UNDER_CE
return
strcoll
(((
subfn
*
)
a
)
->
psz_fname
,
((
subfn
*
)
b
)
->
psz_fname
);
#else
return
strcmp
(((
subfn
*
)
a
)
->
psz_fname
,
((
subfn
*
)
b
)
->
psz_fname
);
#endif
}
/**
...
...
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