diff options
author | Noah Eisen <ncteisen@google.com> | 2017-04-06 15:48:19 -0700 |
---|---|---|
committer | Noah Eisen <ncteisen@google.com> | 2017-04-06 15:48:19 -0700 |
commit | 786c852035aac17ff8584a900c6206cc151062e8 (patch) | |
tree | b12e6357ce92dc99b662c037ca808b13cf574de2 /src/core/lib | |
parent | c6ec1155d026c91b1badb07ef1605bb747cff064 (diff) |
clang fmt
If I had a nickle...
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/iomgr/error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/error.c b/src/core/lib/iomgr/error.c index 766cc8a516..fbbca6b493 100644 --- a/src/core/lib/iomgr/error.c +++ b/src/core/lib/iomgr/error.c @@ -231,8 +231,8 @@ static void internal_set_int(grpc_error **err, grpc_error_ints which, if (slot == UINT8_MAX) { slot = get_placement(err, sizeof(value)); if (slot == UINT8_MAX) { - gpr_log(GPR_ERROR, "Error %p is full, dropping int {\"%s\":%" PRIiPTR "}", *err, - error_int_name(which), value); + gpr_log(GPR_ERROR, "Error %p is full, dropping int {\"%s\":%" PRIiPTR "}", + *err, error_int_name(which), value); return; } } |