aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2013-01-02 08:57:32 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2013-01-02 08:57:32 (GMT)
commitf587cc9e7e8c40bce778ffc0811a3a6c29107b85 (patch)
treef0a52e8a8b13bc323846900ef41b449341f11251 /src
parent2294b165265e877ce81cbde2c4983c91b991e3b2 (diff)
downloadfluxbox-f587cc9e7e8c40bce778ffc0811a3a6c29107b85.zip
fluxbox-f587cc9e7e8c40bce778ffc0811a3a6c29107b85.tar.bz2
Compile fix: forgotten parentheses around value
Diffstat (limited to 'src')
-rw-r--r--src/FbTk/FbTime.cc2
1 files changed, 1 insertions, 1 deletions
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() {
71 initial = false; 71 initial = false;
72 mach_timebase_info_data_t info; 72 mach_timebase_info_data_t info;
73 if (mach_timebase_info(&info) == 0) { 73 if (mach_timebase_info(&info) == 0) {
74 micro_scale *= static_cast<double>info.numer / static_cast<double>(info.denom); 74 micro_scale *= static_cast<double>(info.numer) / static_cast<double>(info.denom);
75 } 75 }
76 } 76 }
77 77