Skip to content

Commit

Permalink
Fixed typo in Dos16Write's TRACE_NATIVE line.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 14, 2018
1 parent 4ab1d42 commit cdaf533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/doscalls.c
Expand Up @@ -3056,7 +3056,7 @@ APIRET16 Dos16GetEnv(PUSHORT psel, PUSHORT pcmdoffset)

APIRET16 Dos16Write(USHORT h, PVOID buf, USHORT buflen, PUSHORT actual)
{
TRACE_NATIVE("DosWrite(%u, %p, %u, %p)", (uint) h, buf, (uint) buflen, actual);
TRACE_NATIVE("Dos16Write(%u, %p, %u, %p)", (uint) h, buf, (uint) buflen, actual);
ULONG ulactual = actual ? *actual : 0;
APIRET rc = DosWrite_implementation(h, buf, buflen, &ulactual);
if (actual) *actual = (USHORT) ulactual;
Expand Down

0 comments on commit cdaf533

Please sign in to comment.