diff options
Diffstat (limited to 'vendor/codeberg.org/gruf/go-kv/v2/format/methods.go')
| -rw-r--r-- | vendor/codeberg.org/gruf/go-kv/v2/format/methods.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/codeberg.org/gruf/go-kv/v2/format/methods.go b/vendor/codeberg.org/gruf/go-kv/v2/format/methods.go index 7c1795771..fcbffd3a4 100644 --- a/vendor/codeberg.org/gruf/go-kv/v2/format/methods.go +++ b/vendor/codeberg.org/gruf/go-kv/v2/format/methods.go @@ -45,7 +45,7 @@ func getInterfaceStringerType(t typenode) FormatFunc { case true: return with_typestr_ptrs(t, func(s *State) { s.P = *(*unsafe.Pointer)(s.P) - if s.P == nil || (*reflect_nonEmptyInterface)(s.P).word == nil { + if s.P == nil || (*abi_NonEmptyInterface)(s.P).Data == nil { appendNil(s) return } @@ -54,7 +54,7 @@ func getInterfaceStringerType(t typenode) FormatFunc { }) case false: return with_typestr_ptrs(t, func(s *State) { - if s.P == nil || (*reflect_nonEmptyInterface)(s.P).word == nil { + if s.P == nil || (*abi_NonEmptyInterface)(s.P).Data == nil { appendNil(s) return } @@ -102,7 +102,7 @@ func getInterfaceErrorType(t typenode) FormatFunc { case true: return with_typestr_ptrs(t, func(s *State) { s.P = *(*unsafe.Pointer)(s.P) - if s.P == nil || (*reflect_nonEmptyInterface)(s.P).word == nil { + if s.P == nil || (*abi_NonEmptyInterface)(s.P).Data == nil { appendNil(s) return } @@ -111,7 +111,7 @@ func getInterfaceErrorType(t typenode) FormatFunc { }) case false: return with_typestr_ptrs(t, func(s *State) { - if s.P == nil || (*reflect_nonEmptyInterface)(s.P).word == nil { + if s.P == nil || (*abi_NonEmptyInterface)(s.P).Data == nil { appendNil(s) return } |
