]> git.sesse.net Git - vlc/commitdiff
Freetype: don't give the fontconfig time in seconds, it always shows 0s...
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Apr 2009 17:35:00 +0000 (19:35 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Apr 2009 17:38:07 +0000 (19:38 +0200)
modules/misc/freetype.c

index c638da0f4a55981b6ccdf75a2d59dd978577948e..7e458663d77eb3f342480ac2cdc31684f5a88afe 100644 (file)
@@ -532,7 +532,7 @@ static void* FontBuilderThread( vlc_object_t *p_this )
         t2 = mdate();
 
         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 );
         p_this->p_private = p_fontconfig;