From 6933c27e9c280f5b3d64227d756243d993eba727 Mon Sep 17 00:00:00 2001 From: Wilco Dijkstra Date: Mon, 24 Nov 2014 20:38:01 +0000 Subject: Fix typo. --- string/strcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string') diff --git a/string/strcpy.c b/string/strcpy.c index 91f9cc640e..94ca1df1e7 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) -- cgit 1.4.1