diff options
| author | 2021-02-23 04:24:14 +0000 | |
|---|---|---|
| committer | 2021-02-23 04:24:14 +0000 | |
| commit | f0f152484bef8d08e879b4e4c537617f9e2f94c6 (patch) | |
| tree | 2afaef7223171fb8c516577c8351456f0db463c6 /java/java.go | |
| parent | 0d2497088c0380d72b66ae44e3a82a755fc247ab (diff) | |
| parent | d4cbf340322253ab021dbfe264e0e1a1a03dfa2d (diff) | |
Merge "Fix infinite recursion when printing unrecognized linktype"
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index dbfad029b..78cd362d8 100644 --- a/java/java.go +++ b/java/java.go @@ -1038,7 +1038,7 @@ func (lt linkType) String() string { case javaPlatform: return "private API" default: - panic(fmt.Errorf("unrecognized linktype: %v", lt)) + panic(fmt.Errorf("unrecognized linktype: %d", lt)) } } |