From 596b919707004c90540cba0eb7b337a323f27953 Mon Sep 17 00:00:00 2001
From: "Denny C. Dai" <dennycd@me.com>
Date: Tue, 2 Nov 2021 19:47:48 -0700
Subject: [PATCH] Revert "[objc] Changing GRPCErrorCode enum base type to
 int32_t (#27908)" (#27921)

This reverts commit 6b916984a8b167d4bcf9c15e21090be49976ceaa.
---
 src/objective-c/GRPCClient/GRPCTypes.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/objective-c/GRPCClient/GRPCTypes.h b/src/objective-c/GRPCClient/GRPCTypes.h
index 8a82fc3728d..812f3460f75 100644
--- a/src/objective-c/GRPCClient/GRPCTypes.h
+++ b/src/objective-c/GRPCClient/GRPCTypes.h
@@ -23,7 +23,7 @@
  * Note that a few of these are never produced by the gRPC libraries, but are of
  * general utility for server applications to produce.
  */
-typedef NS_ENUM(int32_t, GRPCErrorCode) {
+typedef NS_ENUM(NSUInteger, GRPCErrorCode) {
   /** The operation was cancelled (typically by the caller). */
   GRPCErrorCodeCancelled = 1,