Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0f15248 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix infinite recursion when printing unrecognized linktype"

parents 0d249708 d4cbf340
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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))
	}
}