Commit c6c71451 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Fix compile warning with android NDK

parent b5717cd2
......@@ -1095,7 +1095,7 @@ void prepare_response(Stream *stream, Http2Handler *hd,
return;
}
if (last_mod_found && buf.st_mtime <= last_mod) {
if (last_mod_found && static_cast<time_t>(buf.st_mtime) <= last_mod) {
close(file);
prepare_status_response(stream, hd, 304);
......
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