about summary refs log tree commit diff
path: root/string/strcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strcmp.c')
-rw-r--r--string/strcmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcmp.c b/string/strcmp.c
index e9b24c9512..8229d7c773 100644
--- a/string/strcmp.c
+++ b/string/strcmp.c
@@ -30,7 +30,7 @@ strcmp (p1, p2)
 {
   register const unsigned char *s1 = (const unsigned char *) p1;
   register const unsigned char *s2 = (const unsigned char *) p2;
-  unsigned reg_char c1, c2;
+  unsigned char c1, c2;
 
   do
     {