Fix compile error in metric helper function.

This commit is contained in:
Julius Volz 2013-03-19 14:25:07 +01:00 committed by Matt T. Proud
parent 4e73c4c204
commit bf78d427be

View file

@ -109,7 +109,7 @@ func (v Values) InsideInterval(t time.Time) (s bool) {
return
}
if t.Before(v[0]).Timestamp {
if t.Before(v[0].Timestamp) {
return
}