summaryrefslogtreecommitdiff
path: root/flags.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-16 16:24:47 -0500
committerJeff Carr <[email protected]>2025-08-16 21:50:21 -0500
commit8c7078908b05357e199af4ee85fd2170d6dbdf8d (patch)
treefe22069da51eb6b464f6e98b40a5104b1230d399 /flags.go
parent466a3c60768e918cc292b6a59caa98262ca2af71 (diff)
more compat for 'fmt' packagev0.22.17
Diffstat (limited to 'flags.go')
-rw-r--r--flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/flags.go b/flags.go
index 78d8b5e..1a179a3 100644
--- a/flags.go
+++ b/flags.go
@@ -148,7 +148,7 @@ func (f *LogFlag) Disabled() bool {
if !f.Ok() {
return true
}
- return ! f.b
+ return !f.b
}
// just the opposite of Disabled()