about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--string/strcpy.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 23f29a2da3..83d439b7bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2013-02-08  Roland McGrath  <roland@hack.frob.com>
 
+	* string/strcpy.c: Removed unused variable.
+
 	* Makeconfig (+sysdep-includes): Define with := rather than =.
 	Use an existing include/ subdir of each sysdeps dir before it.
 
diff --git a/string/strcpy.c b/string/strcpy.c
index 9b713dcaa1..64e030d8d2 100644
--- a/string/strcpy.c
+++ b/string/strcpy.c
@@ -30,7 +30,6 @@ strcpy (dest, src)
   char c;
   char *__unbounded s = (char *__unbounded) src;
   const ptrdiff_t off = dest - s - 1;
-  size_t n;
 
   do
     {
@@ -39,8 +38,6 @@ strcpy (dest, src)
     }
   while (c != '\0');
 
-  n = s - src;
-
   return dest;
 }
 libc_hidden_builtin_def (strcpy)