build: Add platform specific fixes.

This commit is contained in:
Harshavardhana
2016-08-16 14:40:16 -07:00
parent f2bffe6086
commit 4dec50ba51
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ func GetStats() (stats Stats, err error) {
return
}
stats = Stats{
TotalRAM: si.Totalram,
TotalRAM: uint64(si.Totalram),
}
return stats, nil
}