From b607cb012a01a69a378448da7b2d14ecd5143e14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Mon, 23 Sep 1996 02:04:55 +0200 Subject: [PATCH] warning fixed Rev: src/port.h:1.4 --- src/port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/port.h b/src/port.h index 993b43ad2d..66beab0b63 100644 --- a/src/port.h +++ b/src/port.h @@ -65,7 +65,7 @@ char *MEMCPY(char *b,const char *a,int s); # define __builtin_memcpy MEMCPY # endif #else -# define MEMCPY memcpy +# define MEMCPY(X,Y,Z) memcpy((char*)(X),(char*)(Y),(Z)) #endif #ifndef HAVE_MEMMOVE -- GitLab