diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-05-18 22:23:03 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-05-18 22:23:03 -0700 |
commit | c4c3f389eee4974853823065576daec466ab9800 (patch) | |
tree | 7323f37ced0c6786d37e86fc7a9ed657af4b029f /src/core | |
parent | 5a8b87c5b7bad27241e6f5d6c73329e41396689b (diff) | |
parent | c1f3f2d556313f9d3674bb04b6fa893bb2bcd63a (diff) |
Merge pull request #1651 from jboeuf/subprocess_binary_extension
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; |