aboutsummaryrefslogtreecommitdiffstats
path: root/man/man3/strcpy.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/man3/strcpy.3')
-rw-r--r--man/man3/strcpy.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man/man3/strcpy.3 b/man/man3/strcpy.3
index 9d84ddbc98..40a4823a27 100644
--- a/man/man3/strcpy.3
+++ b/man/man3/strcpy.3
@@ -164,13 +164,13 @@ main(void)
char *p;
char *buf1;
char *buf2;
- size_t len, maxsize;
+ size_t len, size;
\&
- maxsize = strlen("Hello ") + strlen("world") + strlen("!") + 1;
- buf1 = malloc(sizeof(*buf1) * maxsize);
+ size = strlen("Hello ") + strlen("world") + strlen("!") + 1;
+ buf1 = malloc(sizeof(*buf1) * size);
if (buf1 == NULL)
err(EXIT_FAILURE, "malloc()");
- buf2 = malloc(sizeof(*buf2) * maxsize);
+ buf2 = malloc(sizeof(*buf2) * size);
if (buf2 == NULL)
err(EXIT_FAILURE, "malloc()");
\&