sys: fileinfo.c: minor comment change

This commit is contained in:
Bill Zissimopoulos 2016-09-24 15:09:15 -07:00
parent 0c810c52fa
commit 7894cc8b7b

View File

@ -411,7 +411,7 @@ static NTSTATUS FspFsvolQueryStreamInformationCopy(
if ((PUINT8)DestBuf + BaseInfoLen + StreamNameLength > DestBufEnd)
{
/* only copy as much of the stream name as we can and return STATUS_BUFFER_OVERFLOW */
/* copy as much of the stream name as we can and return STATUS_BUFFER_OVERFLOW */
StreamNameLength = (ULONG)(DestBufEnd - ((PUINT8)DestBuf + BaseInfoLen));
Result = STATUS_BUFFER_OVERFLOW;
}