Skip to content
Snippets Groups Projects
Commit 79912047 authored by deuce's avatar deuce
Browse files

Fix comWriteBuf()

Did I never test this at all?!?!
parent e839ac13
No related branches found
No related tags found
No related merge requests found
......@@ -168,7 +168,7 @@ BOOL comWriteByte(COM_HANDLE handle, BYTE ch)
int comWriteBuf(COM_HANDLE handle, const BYTE* buf, size_t buflen)
{
return write(handle, &buf, buflen);
return write(handle, buf, buflen);
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment