reflect/prototype: fix mapping of Go types for fixed{32,64} kinds

Change-Id: I700e61c819a72d31a3b77b7de7fab7799aa22db3
Reviewed-on: https://go-review.googlesource.com/c/154582
Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
diff --git a/reflect/prototype/go_type.go b/reflect/prototype/go_type.go
index e292608..2776aa3 100644
--- a/reflect/prototype/go_type.go
+++ b/reflect/prototype/go_type.go
@@ -269,14 +269,14 @@
 	protoreflect.BoolKind:     reflect.TypeOf(bool(false)),
 	protoreflect.Int32Kind:    reflect.TypeOf(int32(0)),
 	protoreflect.Sint32Kind:   reflect.TypeOf(int32(0)),
-	protoreflect.Fixed32Kind:  reflect.TypeOf(int32(0)),
+	protoreflect.Sfixed32Kind: reflect.TypeOf(int32(0)),
 	protoreflect.Int64Kind:    reflect.TypeOf(int64(0)),
 	protoreflect.Sint64Kind:   reflect.TypeOf(int64(0)),
-	protoreflect.Fixed64Kind:  reflect.TypeOf(int64(0)),
+	protoreflect.Sfixed64Kind: reflect.TypeOf(int64(0)),
 	protoreflect.Uint32Kind:   reflect.TypeOf(uint32(0)),
-	protoreflect.Sfixed32Kind: reflect.TypeOf(uint32(0)),
+	protoreflect.Fixed32Kind:  reflect.TypeOf(uint32(0)),
 	protoreflect.Uint64Kind:   reflect.TypeOf(uint64(0)),
-	protoreflect.Sfixed64Kind: reflect.TypeOf(uint64(0)),
+	protoreflect.Fixed64Kind:  reflect.TypeOf(uint64(0)),
 	protoreflect.FloatKind:    reflect.TypeOf(float32(0)),
 	protoreflect.DoubleKind:   reflect.TypeOf(float64(0)),
 	protoreflect.StringKind:   reflect.TypeOf(string("")),