diff options
author | Craig Tiller <ctiller@google.com> | 2016-06-01 16:37:32 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-06-01 16:37:32 -0700 |
commit | a572a144b14bea824273b37a1c1010c6da73d634 (patch) | |
tree | c5fa8872b55b77fab9d579c495360bc5b8df6a25 /src/core | |
parent | d07ad1caf3a16d7aeda1fa246bad7c7f5d7ebb75 (diff) |
clang-format
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/iomgr/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/error.c b/src/core/lib/iomgr/error.c index d99f9740b5..6c325ef34d 100644 --- a/src/core/lib/iomgr/error.c +++ b/src/core/lib/iomgr/error.c @@ -341,7 +341,7 @@ static char *key_time(void *p) { static char *fmt_int(void *p) { char *s; - gpr_asprintf(&s, "%"PRIdPTR, (intptr_t)p); + gpr_asprintf(&s, "%" PRIdPTR, (intptr_t)p); return s; } |