From f587cc9e7e8c40bce778ffc0811a3a6c29107b85 Mon Sep 17 00:00:00 2001 From: Mathias Gumz Date: Wed, 2 Jan 2013 09:57:32 +0100 Subject: Compile fix: forgotten parentheses around value --- src/FbTk/FbTime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FbTk/FbTime.cc b/src/FbTk/FbTime.cc index 54eda75..d0ef731 100644 --- a/src/FbTk/FbTime.cc +++ b/src/FbTk/FbTime.cc @@ -71,7 +71,7 @@ uint64_t _now() { initial = false; mach_timebase_info_data_t info; if (mach_timebase_info(&info) == 0) { - micro_scale *= static_castinfo.numer / static_cast(info.denom); + micro_scale *= static_cast(info.numer) / static_cast(info.denom); } } -- cgit v0.11.2