Skip to content

Commit

Permalink
Actually fixed naming issue this time.
Browse files Browse the repository at this point in the history
  • Loading branch information
emkooz committed Nov 29, 2017
1 parent 6354c2a commit cfea8e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/MemoryWatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void MemoryWatcher::Step()
#ifdef _WIN32
unsigned long written;
if (m_pipe != INVALID_HANDLE_VALUE)
WriteFile(m_pipe, message.c_str(), static_cast<DWORD>(message.size() + 1), &m_written,
WriteFile(m_pipe, message.c_str(), static_cast<DWORD>(message.size() + 1), &written,
nullptr);
#else
sendto(m_fd, message.c_str(), message.size() + 1, 0, reinterpret_cast<sockaddr*>(&m_addr),
Expand Down

0 comments on commit cfea8e5

Please sign in to comment.