diff options
Diffstat (limited to 'contrib/libs/grpc/src')
-rw-r--r-- | contrib/libs/grpc/src/core/lib/iomgr/error.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/grpc/src/core/lib/iomgr/error.cc b/contrib/libs/grpc/src/core/lib/iomgr/error.cc index c4b5c73952..2a2da67679 100644 --- a/contrib/libs/grpc/src/core/lib/iomgr/error.cc +++ b/contrib/libs/grpc/src/core/lib/iomgr/error.cc @@ -737,9 +737,9 @@ static char* finish_kvs(kv_pairs* kvs) { return s; } -// Newly allocated error string is stored into err object via atomic cas, and this drives coverity crazy -// Disable allocation checks as the code is fine. -// coverity[-alloc] +// Newly allocated error string is stored into err object via atomic cas, and this drives coverity crazy +// Disable allocation checks as the code is fine. +// coverity[-alloc] const char* grpc_error_string(grpc_error* err) { GPR_TIMER_SCOPE("grpc_error_string", 0); if (err == GRPC_ERROR_NONE) return no_error_string; |