diff options
author | Julien Boeuf <jboeuf@google.com> | 2015-05-18 21:09:23 -0700 |
---|---|---|
committer | Julien Boeuf <jboeuf@google.com> | 2015-05-18 21:09:23 -0700 |
commit | c1f3f2d556313f9d3674bb04b6fa893bb2bcd63a (patch) | |
tree | 7323f37ced0c6786d37e86fc7a9ed657af4b029f /src/core | |
parent | 5a8b87c5b7bad27241e6f5d6c73329e41396689b (diff) |
Extension should return a const char *.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/support/subprocess_posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/subprocess_posix.c b/src/core/support/subprocess_posix.c index 4580537aa8..642520bb47 100644 --- a/src/core/support/subprocess_posix.c +++ b/src/core/support/subprocess_posix.c @@ -55,7 +55,7 @@ struct gpr_subprocess { int joined; }; -char *gpr_subprocess_binary_extension() { return ""; } +const char *gpr_subprocess_binary_extension() { return ""; } gpr_subprocess *gpr_subprocess_create(int argc, char **argv) { gpr_subprocess *r; |