Log: Ensure FLAGS=none is -1 (#9287)
This commit is contained in:
parent
15254f5762
commit
95a57394af
1 changed files with 3 additions and 0 deletions
|
@ -60,5 +60,8 @@ func FlagsFromString(from string) int {
|
||||||
flags |= f
|
flags |= f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if flags == 0 {
|
||||||
|
return -1
|
||||||
|
}
|
||||||
return flags
|
return flags
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue