[BUGFIX] increase uint32 to int64 for memory

This commit is contained in:
Martin/Geno 2018-01-31 18:15:00 +01:00
parent 9d3eb127aa
commit 0d186677e4
No known key found for this signature in database
GPG Key ID: F0D39A37E925E941
1 changed files with 4 additions and 4 deletions

View File

@ -66,10 +66,10 @@ type Clients struct {
// Memory struct
type Memory struct {
Cached uint32 `json:"cached"`
Total uint32 `json:"total"`
Buffers uint32 `json:"buffers"`
Free uint32 `json:"free"`
Cached int64 `json:"cached"`
Total int64 `json:"total"`
Buffers int64 `json:"buffers"`
Free int64 `json:"free"`
}
// SwitchPort struct