about summary refs log tree commit diff
path: root/debug/strcpy_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/strcpy_chk.c')
-rw-r--r--debug/strcpy_chk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/strcpy_chk.c b/debug/strcpy_chk.c
index e867754d4a..ee22b11cd3 100644
--- a/debug/strcpy_chk.c
+++ b/debug/strcpy_chk.c
@@ -28,7 +28,7 @@ __strcpy_chk (dest, src, destlen)
      const char *src;
      size_t destlen;
 {
-  reg_char c;
+  char c;
   char *s = (char *) src;
   const ptrdiff_t off = dest - s;