forgot to add \n

svn path=/trunk/; revision=39007
This commit is contained in:
Christoph von Wittich 2009-01-22 09:43:02 +00:00
parent 9cd35f3d5c
commit 183869c16c

View file

@ -134,7 +134,7 @@ DeviceIoControl(IN HANDLE hDevice,
completed) */
if (!lpBytesReturned)
{
ERR("Bad caller: lpBytesReturned must not be NULL");
ERR("Bad caller: lpBytesReturned must not be NULL\n");
}
*lpBytesReturned = Iosb.Information;
}
@ -190,7 +190,7 @@ GetOverlappedResult (
if (!lpNumberOfBytesTransferred)
{
ERR("Bad caller: lpNumberOfBytesTransferred must not be NULL");
ERR("Bad caller: lpNumberOfBytesTransferred must not be NULL\n");
}
*lpNumberOfBytesTransferred = lpOverlapped->InternalHigh;