Commit c02fefe0 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

spdylay_ssl.cc: Cast tv.tv_sec to long int to pass printf

parent aa13b9b9
......@@ -516,7 +516,7 @@ void print_timer()
get_timer(&tv);
printf("%s[%3ld.%03ld]%s",
ansi_esc("\033[33m"),
tv.tv_sec, tv.tv_usec/1000,
(long int)tv.tv_sec, tv.tv_usec/1000,
ansi_escend());
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment