build break in strcpy.c
Wilco Dijkstra
wdijkstr@arm.com
Mon Nov 24 21:48:00 GMT 2014
> Petar Jovanovic wrote:
>
> Can you actually build the code after this change?
>
> You may want to follow up with:
>
> diff --git a/string/strcpy.c b/string/strcpy.c
> index 91f9cc6..94ca1df 100644
> --- a/string/strcpy.c
> +++ b/string/strcpy.c
> @@ -24,6 +24,6 @@
> char *
> strcpy (char *dest, const char *src)
> {
> - return memcpy (dest, src, strlen (src) + 1));
> + return memcpy (dest, src, strlen (src) + 1);
> }
> libc_hidden_builtin_def (strcpy)
Sorry, not sure where that extra character came from - it seems to
be in the email with the patch but not in my original code...
Anyway, committed as obvious, and it builds again now.
Wilco
More information about the Libc-alpha
mailing list