opnsense-ports/math/physcalc/files/patch-physnode.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

18 lines
398 B
C

--- physnode.c.orig Sat Oct 7 21:33:27 2006
+++ physnode.c Sat Oct 7 21:33:30 2006
@@ -305,12 +305,12 @@
}
EXPORT void bytecopy(dst, src, bytes)
-VOID *dst;
-VOID const *src;
+char *dst;
+char const *src;
int bytes;
{
while (bytes--)
- *((char *)dst)++ = *((char const *)src)++;
+ *dst++ = *src++;
}
EXPORT NODEP copynode(n) /* Create a duplicate of node n (including sub-nodes) */