From 672cd42a04aa74d86f8ffbc1aa44b662ea7f6f1b Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Fri, 23 Jan 2015 13:48:49 -0800 Subject: [PATCH] Formatting --- src/core/support/string.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/support/string.h b/src/core/support/string.h index 2ce4b7f7856..28b7029ecd6 100644 --- a/src/core/support/string.h +++ b/src/core/support/string.h @@ -64,7 +64,8 @@ int gpr_parse_bytes_to_uint32(const char *data, size_t length, #define GPR_LTOA_MIN_BUFSIZE (3 * sizeof(long)) /* Convert a long to a string in base 10; returns the length of the - output string (or 0 on failure) */ + output string (or 0 on failure). + output must be at least GPR_LTOA_MIN_BUFSIZE bytes long. */ int gpr_ltoa(long value, char *output); /* Reverse a run of bytes */