mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
Fix missing parentheses
This commit is contained in:
parent
b01990124e
commit
03ff363982
1 changed files with 2 additions and 2 deletions
|
@ -381,8 +381,8 @@ bool t_rpc_command_executor::show_status() {
|
|||
% (unsigned)ires.outgoing_connections_count
|
||||
% (unsigned)ires.incoming_connections_count
|
||||
% (unsigned int)floor(uptime / 60.0 / 60.0 / 24.0)
|
||||
% (unsigned int)floor(fmod((uptime / 60.0 / 60.0), 24.0)
|
||||
% (unsigned int)floor(fmod((uptime / 60.0), 60.0)
|
||||
% (unsigned int)floor(fmod((uptime / 60.0 / 60.0), 24.0))
|
||||
% (unsigned int)floor(fmod((uptime / 60.0), 60.0))
|
||||
% (unsigned int)fmod(uptime, 60.0)
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in a new issue