Skip to content
Snippets Groups Projects
Commit 25a5475c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf
Browse files

parse: fix build with 2.2.x

parent 7177e3cb
No related branches found
No related tags found
No related merge requests found
......@@ -155,9 +155,9 @@ int vlc_player::preparse_item_sync(unsigned int idx, int options, unsigned int t
#else
media->parse();
if ( media->isParsed() )
retval = int( VLC::Media::ParsedStatus::Done );
retval = 4; /* int( VLC::Media::ParsedStatus::Done ); */
else
retval = int( VLC::Media::ParsedStatus::Failed );
retval = 2; /* int( VLC::Media::ParsedStatus::Failed ); */
#endif
return retval;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment