diff options
Diffstat (limited to 'string/strcpy.c')
-rw-r--r-- | string/strcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcpy.c b/string/strcpy.c index 64e030d8d2..b71f7536bc 100644 --- a/string/strcpy.c +++ b/string/strcpy.c @@ -28,7 +28,7 @@ strcpy (dest, src) const char *src; { char c; - char *__unbounded s = (char *__unbounded) src; + char *s = (char *) src; const ptrdiff_t off = dest - s - 1; do |