all repos — fluxbox @ f587cc9e7e8c40bce778ffc0811a3a6c29107b85

custom fork of the fluxbox windowmanager

Compile fix: forgotten parentheses around value
Mathias Gumz akira at fluxbox dot org
commit

f587cc9e7e8c40bce778ffc0811a3a6c29107b85

parent

2294b165265e877ce81cbde2c4983c91b991e3b2

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/FbTk/FbTime.ccsrc/FbTk/FbTime.cc

@@ -71,7 +71,7 @@ if (initial) {

initial = false; mach_timebase_info_data_t info; if (mach_timebase_info(&info) == 0) { - micro_scale *= static_cast<double>info.numer / static_cast<double>(info.denom); + micro_scale *= static_cast<double>(info.numer) / static_cast<double>(info.denom); } }