diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-05-24 15:26:15 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-05-24 15:26:15 -0700 |
commit | 031dea1df4b6213b9f9779a824fccc6d348b8648 (patch) | |
tree | 8920eebeac54ff03385287d27ca278a532c7dfb2 /src/core/surface | |
parent | 19def88839b15a89b4c0e79de16bd01139a0bb14 (diff) | |
parent | 356961916d69bff6cade54bb02b928a956890970 (diff) |
Merge pull request #1740 from ctiller/function-isnt-standard
Remove all uses of __FUNCTION__
Diffstat (limited to 'src/core/surface')
-rw-r--r-- | src/core/surface/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/server.c b/src/core/surface/server.c index d75af7291b..24a23ae5c4 100644 --- a/src/core/surface/server.c +++ b/src/core/surface/server.c @@ -665,7 +665,7 @@ void *grpc_server_register_method(grpc_server *server, const char *method, const char *host) { registered_method *m; if (!method) { - gpr_log(GPR_ERROR, "%s method string cannot be NULL", __FUNCTION__); + gpr_log(GPR_ERROR, "grpc_server_register_method method string cannot be NULL"); return NULL; } for (m = server->registered_methods; m; m = m->next) { |