[vlc-devel] commit: Freetype: don't give the fontconfig time in seconds, it always shows 0s... (Jean-Baptiste Kempf )

git version control git at videolan.org
Thu Apr 2 19:38:26 CEST 2009


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr  2 19:35:00 2009 +0200| [b5d23f809d0c8c369f833db80d4cec2d7b9a85eb] | committer: Jean-Baptiste Kempf 

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b5d23f809d0c8c369f833db80d4cec2d7b9a85eb
---

 modules/misc/freetype.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/misc/freetype.c b/modules/misc/freetype.c
index c638da0..7e45866 100644
--- a/modules/misc/freetype.c
+++ b/modules/misc/freetype.c
@@ -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;




More information about the vlc-devel mailing list