[BUGFIX] increase uint32 to int64 for memory
This commit is contained in:
parent
9d3eb127aa
commit
0d186677e4
|
@ -66,10 +66,10 @@ type Clients struct {
|
||||||
|
|
||||||
// Memory struct
|
// Memory struct
|
||||||
type Memory struct {
|
type Memory struct {
|
||||||
Cached uint32 `json:"cached"`
|
Cached int64 `json:"cached"`
|
||||||
Total uint32 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
Buffers uint32 `json:"buffers"`
|
Buffers int64 `json:"buffers"`
|
||||||
Free uint32 `json:"free"`
|
Free int64 `json:"free"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SwitchPort struct
|
// SwitchPort struct
|
||||||
|
|
Loading…
Reference in New Issue