Fix statusOk

This commit is contained in:
Cheer Xiao 2015-01-21 22:35:36 +01:00
parent 4830d4818f
commit ad37ece4e8

View File

@ -34,11 +34,11 @@ type evaluatorEphemeral struct {
func statusOk(vs []Value) bool {
for _, v := range vs {
v, ok := v.(*String)
v, ok := v.(String)
if !ok {
return false
}
if string(*v) != "" {
if string(v) != "" {
return false
}
}