diff options
Diffstat (limited to 'libgo/go/runtime/error.go')
-rw-r--r-- | libgo/go/runtime/error.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/runtime/error.go b/libgo/go/runtime/error.go index d5d502c396d1..9cf2230ab3f9 100644 --- a/libgo/go/runtime/error.go +++ b/libgo/go/runtime/error.go @@ -142,7 +142,7 @@ func typestring(x interface{}) string { // Prints an argument passed to panic. // There's room for arbitrary complexity here, but we keep it // simple and handle just a few important cases: int, string, and Stringer. -func Printany(i interface{}) { +func printany(i interface{}) { switch v := i.(type) { case nil: print("nil") |