go.tools/dashboard: fix printf buf found by go vet

LGTM=iant
R=adg, iant
CC=golang-codereviews
https://golang.org/cl/100460047
This commit is contained in:
Rob Pike 2014-05-16 14:27:32 -07:00
parent ab1e5c6c94
commit 87a30fd93f
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ func (b *Builder) buildOrBench() bool {
}
return true
default:
log.Println("Unknown todo kind %v", kind)
log.Printf("Unknown todo kind %v", kind)
return false
}
}