aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/log_win32.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-07-13 10:10:31 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-07-13 10:10:31 -0700
commitcc44ee50e467a956994a9d283084f40ccbd04a02 (patch)
treef45bad885a001ad2b39197284fc2e10aae4dc42d /src/core/support/log_win32.c
parent53132db4a46aaf93a6aef4dd73cd27250b836d6b (diff)
parent4d0b7427faecfdbb1635c2ab158c922d7511b865 (diff)
Merge github.com:grpc/grpc into flow-like-lava-to-a-barnyard
Diffstat (limited to 'src/core/support/log_win32.c')
-rw-r--r--src/core/support/log_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/log_win32.c b/src/core/support/log_win32.c
index d249be7d2e..629781da8a 100644
--- a/src/core/support/log_win32.c
+++ b/src/core/support/log_win32.c
@@ -82,7 +82,7 @@ void gpr_log(const char *file, int line, gpr_log_severity severity,
/* Simple starter implementation */
void gpr_default_log(gpr_log_func_args *args) {
char time_buffer[64];
- gpr_timespec now = gpr_now();
+ gpr_timespec now = gpr_now(GPR_CLOCK_REALTIME);
struct tm tm;
if (localtime_s(&tm, &now.tv_sec)) {