Add missing )

pull/4996/head
Craig Tiller 9 years ago
parent b941095f28
commit fa1142af46
  1. 2
      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) {

Loading…
Cancel
Save