mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
convert uses of interface{} to any
Done via:
find . -name "*.go" | xargs sed -i -E 's/interface\{\}/any/g'
PiperOrigin-RevId: 487033228
This commit is contained in:
committed by
gVisor bot
parent
c82b70015d
commit
d8aa09e04c
@@ -88,7 +88,7 @@ syscalls. {{if .Undocumented}}{{.Undocumented}} syscalls are not yet documented.
|
||||
`))
|
||||
|
||||
// Fatalf writes a message to stderr and exits with error code 1
|
||||
func Fatalf(format string, a ...interface{}) {
|
||||
func Fatalf(format string, a ...any) {
|
||||
fmt.Fprintf(os.Stderr, format, a...)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user