aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-02-01 14:29:54 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-02-01 14:29:54 -0800
commitfa1142af4606ef55b5dc44d25df5ca96370f0214 (patch)
treec79b3e3069477d019826cc6a10ffe1972d6179d9 /src/core
parentb941095f28d13288100dae54e14925ae41fd987c (diff)
Add missing )
Diffstat (limited to 'src/core')
-rw-r--r--src/core/support/env_linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/env_linux.c b/src/core/support/env_linux.c
index 7bfd8415f8..3477dd2983 100644
--- a/src/core/support/env_linux.c
+++ b/src/core/support/env_linux.c
@@ -61,7 +61,7 @@ char *__attribute__((weak)) __secure_getenv(const char *name);
char *gpr_getenv(const char *name) {
static char *(*getenv_func)(const char *) = secure_getenv;
/* Check to see which getenv variant is supported (go from most
- * to least secure */
+ * to least secure) */
if (getenv_func == NULL) {
getenv_func = __secure_getenv;
if (getenv_func == NULL) {