Skip to content
Snippets Groups Projects
Commit c1f3f2d5 authored by Julien Boeuf's avatar Julien Boeuf
Browse files

Extension should return a const char *.

parent 5a8b87c5
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
typedef struct gpr_subprocess gpr_subprocess; typedef struct gpr_subprocess gpr_subprocess;
/* .exe on windows, empty on unices */ /* .exe on windows, empty on unices */
char *gpr_subprocess_binary_extension(); const char *gpr_subprocess_binary_extension();
gpr_subprocess *gpr_subprocess_create(int argc, char **argv); gpr_subprocess *gpr_subprocess_create(int argc, char **argv);
/* if subprocess has not been joined, kill it */ /* if subprocess has not been joined, kill it */
......
...@@ -55,7 +55,7 @@ struct gpr_subprocess { ...@@ -55,7 +55,7 @@ struct gpr_subprocess {
int joined; 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 *gpr_subprocess_create(int argc, char **argv) {
gpr_subprocess *r; gpr_subprocess *r;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment