Update WtCaplockString.c

This commit is contained in:
vxunderground 2021-05-13 22:56:44 -05:00 committed by GitHub
parent 5275e46879
commit 9d3c8e6943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
PWCHAR WtCaplockString(PWCHAR Ptr)
PWCHAR CaplockString(PWCHAR Ptr)
{
PWCHAR sv = Ptr;
while (*sv != '\0')
@ -9,4 +9,4 @@ PWCHAR WtCaplockString(PWCHAR Ptr)
sv++;
}
return Ptr;
}
}