Skip to content
Snippets Groups Projects
Commit be2a75c5 authored by Oliver Smith's avatar Oliver Smith
Browse files

include string_util.h for the prototype of gpr_strdup and typo.

Fixes two warnings in log_win32.c under msvc2015
log_win32.c(109): warning C4013: 'gpr_strdup' undefined; assuming extern returning int
log_win32.c(109): warning C4047: 'return': 'char *' differs in levels of indirection from 'int'

and corrects a typo in an error message
parent 22b50c93
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
#include <grpc/support/log_win32.h> #include <grpc/support/log_win32.h>
#include <grpc/support/log.h> #include <grpc/support/log.h>
#include <grpc/support/time.h> #include <grpc/support/time.h>
#include <grpc/support/string_util.h>
#include "src/core/support/string.h" #include "src/core/support/string.h"
#include "src/core/support/string_win32.h" #include "src/core/support/string_win32.h"
...@@ -106,7 +107,7 @@ char *gpr_format_message(DWORD messageid) { ...@@ -106,7 +107,7 @@ char *gpr_format_message(DWORD messageid) {
NULL, messageid, NULL, messageid,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR)(&tmessage), 0, NULL); (LPTSTR)(&tmessage), 0, NULL);
if (status == 0) return gpr_strdup("Unable to retreive error string"); if (status == 0) return gpr_strdup("Unable to retrieve error string");
message = gpr_tchar_to_char(tmessage); message = gpr_tchar_to_char(tmessage);
LocalFree(tmessage); LocalFree(tmessage);
return message; return message;
......
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