about summary refs log tree commit diff
path: root/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strcat.c')
-rw-r--r--string/strcat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcat.c b/string/strcat.c
index 3967fa82d7..f9e4bc682d 100644
--- a/string/strcat.c
+++ b/string/strcat.c
@@ -28,7 +28,7 @@ strcat (dest, src)
 {
   char *s1 = dest;
   const char *s2 = src;
-  reg_char c;
+  char c;
 
   /* Find the end of the string.  */
   do