aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/md5c.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-07-22 10:24:41 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-07-22 10:24:41 +0000
commit55d1d7034ff822c944b698c23aa2490416bcf30c (patch)
tree822136a990d18001b2db563f705887b258e810ce /sys/kern/md5c.c
parent60512ca0d2f4eb78a0a2cf88aacc118c1d23bf68 (diff)
downloadsrc-55d1d7034ff822c944b698c23aa2490416bcf30c.tar.gz
src-55d1d7034ff822c944b698c23aa2490416bcf30c.zip
Don't attempt to inline large functions mb_alloc() and mb_free(),
it more than doubles the text size of this file. GCC has wisely ignored us on this previously
Notes
Notes: svn path=/head/; revision=117878
Diffstat (limited to 'sys/kern/md5c.c')
-rw-r--r--sys/kern/md5c.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/kern/md5c.c b/sys/kern/md5c.c
index af5471ccd595..118132975fa7 100644
--- a/sys/kern/md5c.c
+++ b/sys/kern/md5c.c
@@ -178,6 +178,7 @@ MD5Update (context, input, inputLen)
i = 0;
/* Buffer remaining input */
+ /*lint -e{669} */
memcpy ((void *)&context->buffer[index], (const void *)&input[i],
inputLen-i);
}