Skip to content
Snippets Groups Projects
Commit 186b2912 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

freetype: fix negative duration

parent e1a8f36a
No related branches found
No related tags found
No related merge requests found
......@@ -89,8 +89,7 @@ int FontConfig_Prepare( filter_t *p_filter )
#endif
vlc_mutex_unlock( &lock );
ts -= vlc_tick_now();
msg_Dbg( p_filter, "Took %ld microseconds", (long)ts );
msg_Dbg( p_filter, "Took %" PRId64 " microseconds", vlc_tick_now() - ts );
return (config != NULL) ? VLC_SUCCESS : VLC_EGENERIC;
}
......
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