diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2013-01-02 08:57:32 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2013-01-02 08:57:32 (GMT) |
commit | f587cc9e7e8c40bce778ffc0811a3a6c29107b85 (patch) | |
tree | f0a52e8a8b13bc323846900ef41b449341f11251 /src/FbTk | |
parent | 2294b165265e877ce81cbde2c4983c91b991e3b2 (diff) | |
download | fluxbox-f587cc9e7e8c40bce778ffc0811a3a6c29107b85.zip fluxbox-f587cc9e7e8c40bce778ffc0811a3a6c29107b85.tar.bz2 |
Compile fix: forgotten parentheses around value
Diffstat (limited to 'src/FbTk')
-rw-r--r-- | src/FbTk/FbTime.cc | 2 |
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 | ||