Cosmetic: RtlAppendUnicodeToString(): Fix 'const' compiler warnings
[reactos.git] / ntoskrnl / rtl / unicode.c
index 40999be..d3f1c75 100644 (file)
@@ -203,9 +203,9 @@ RtlAppendUnicodeStringToString(IN OUT PUNICODE_STRING Destination,
 
 NTSTATUS STDCALL
 RtlAppendUnicodeToString(IN OUT PUNICODE_STRING Destination,
-                        IN PWSTR Source)
+                        IN PCWSTR Source)
 {
-  PWCHAR Src;
+  PCWCH Src;
   PWCHAR Dest;
   ULONG  i;
   ULONG  slen;