stats: Why do I NEVER check if shit compiles before commiting?
This commit is contained in:
parent
600f8f6ef7
commit
ac9319a64f
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ func webWords(rw http.ResponseWriter, req *http.Request) {
|
|||
// Filter words under a certain usage
|
||||
filtered := make(map[string]UserCount)
|
||||
for word, usage := range words {
|
||||
total := 0
|
||||
total := uint64(0)
|
||||
for _, count := range usage {
|
||||
total += count
|
||||
}
|
||||
|
|
Reference in a new issue