Commit b5d23f80 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Freetype: don't give the fontconfig time in seconds, it always shows 0s...

parent 318e9529
...@@ -532,7 +532,7 @@ static void* FontBuilderThread( vlc_object_t *p_this ) ...@@ -532,7 +532,7 @@ static void* FontBuilderThread( vlc_object_t *p_this )
t2 = mdate(); t2 = mdate();
msg_Dbg( p_this, "Finished building font database." ); msg_Dbg( p_this, "Finished building font database." );
msg_Dbg( p_this, "Took %ld seconds", (long)((t2 - t1)/1000000) ); msg_Dbg( p_this, "Took %ld microseconds", (long)((t2 - t1)) );
vlc_mutex_lock( &fb_lock ); vlc_mutex_lock( &fb_lock );
p_this->p_private = p_fontconfig; p_this->p_private = p_fontconfig;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment