Fix a compilation error on windows.
This commit is contained in:
parent
46fc593ab4
commit
ff0e14d5a7
|
@ -82,7 +82,7 @@ public:
|
|||
if (_stat( filename.c_str(), &buf ) != 0) {
|
||||
throw io_error();
|
||||
}
|
||||
return buf->st_mtime;
|
||||
return buf.st_mtime;
|
||||
}
|
||||
|
||||
virtual void addref() { ReferenceCounted<AsyncFileWinASIO>::addref(); }
|
||||
|
|
Loading…
Reference in New Issue