uptime: fix math
This commit is contained in:
parent
c57cd52e84
commit
5c1fd21a84
1 changed files with 6 additions and 6 deletions
|
@ -23,13 +23,13 @@ pub fn getJson(module: *const Module) !Module.JSON {
|
|||
var uptime_split = std.mem.splitScalar(u8, uptime_string[0 .. uptime_string.len - 1], ' ');
|
||||
var uptime = try std.fmt.parseFloat(f32, uptime_split.first());
|
||||
|
||||
const days = uptime / std.time.s_per_day;
|
||||
uptime -= std.time.s_per_day * @floor(days);
|
||||
const hours = uptime / std.time.s_per_hour;
|
||||
uptime -= std.time.s_per_hour * @floor(hours);
|
||||
const mins = uptime / std.time.s_per_min;
|
||||
uptime /= 60;
|
||||
const mins = @mod(uptime, 60);
|
||||
uptime /= 60;
|
||||
const hours = @mod(uptime, 24);
|
||||
uptime /= 24;
|
||||
|
||||
return .{
|
||||
.full_text = try std.fmt.allocPrint(self.module.allocator, "{d:0>1.0}d {d:0>1.0}h {d:.0}m", .{ days, hours, mins }),
|
||||
.full_text = try std.fmt.allocPrint(self.module.allocator, "{d:0>1.0}d {d:0>1.0}h {d:.0}m", .{ uptime, hours, mins }),
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue