Skip to content

Commit

Permalink
fix error compiling with clang (nw)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Mar 14, 2016
1 parent a6e7581 commit e159558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/modules/file/winptty.cpp
Expand Up @@ -49,7 +49,7 @@ class win_osd_ptty : public osd_file
return error::NONE;
}

virtual error write(void const *buffer, std::uint64_t offset, std::uint32_t count, std::uint32_t &actual)
virtual error write(void const *buffer, std::uint64_t offset, std::uint32_t count, std::uint32_t &actual) override
{
DWORD bytes_written;
if (!WriteFile(m_handle, buffer, count, &bytes_written, NULL))
Expand Down

0 comments on commit e159558

Please sign in to comment.