aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-06-10 15:15:44 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-06-10 15:15:44 -0700
commit0ba114408ebb153b29c85dd8be9847095a6a6954 (patch)
treeb2fe0cfd1e799493489be2a3b4790b59df4fb4a8 /include
parent1f24af879c507927203f11301e6ff2439bdbeff8 (diff)
Fix gpr_log format mismatches in c++ tests
Diffstat (limited to 'include')
-rw-r--r--include/grpc/support/string_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc/support/string_util.h b/include/grpc/support/string_util.h
index 05cbd3b8c9..952cbfc26b 100644
--- a/include/grpc/support/string_util.h
+++ b/include/grpc/support/string_util.h
@@ -54,8 +54,8 @@ GPRAPI char *gpr_strdup(const char *src);
On error, returns -1 and sets *strp to NULL. If the format string is bad,
the result is undefined. */
-GPRAPI int gpr_asprintf(char **strp, const char *format,
- ...) GPRC_PRINT_FORMAT_CHECK(2, 3);
+GPRAPI int gpr_asprintf(char **strp, const char *format, ...)
+ GPRC_PRINT_FORMAT_CHECK(2, 3);
#ifdef __cplusplus
}