summary refs log tree commit diff
path: root/debug/wcscat_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/wcscat_chk.c')
-rw-r--r--debug/wcscat_chk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/wcscat_chk.c b/debug/wcscat_chk.c
index 0d49f70f05..2bd7e76350 100644
--- a/debug/wcscat_chk.c
+++ b/debug/wcscat_chk.c
@@ -23,8 +23,8 @@
 wchar_t *
 __wcscat_chk (wchar_t *dest, const wchar_t *src, size_t destlen)
 {
-  register wchar_t *s1 = dest;
-  register const wchar_t *s2 = src;
+  wchar_t *s1 = dest;
+  const wchar_t *s2 = src;
   wchar_t c;
 
   /* Find the end of the string.  */