Unverified Commit b416685d authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Fix gcc warning on stat (32 bits)

parent 64c2fe18
......@@ -244,9 +244,8 @@ inline size_t filesize(FILE *f)
return static_cast<size_t>(st.st_size);
}
#else // unix 32 bits or cygwin
struct stat st
{
};
struct stat st;
if (fstat(fd, &st) == 0)
{
return static_cast<size_t>(st.st_size);
......
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