From 1baabdbba6f2f12e0f401fcfe72fbdcfd86cb0b2 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 01:22:34 +0200
Subject: [PATCH] MEMCPY macro changed

Rev: src/port.h:1.3
---
 src/port.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/port.h b/src/port.h
index af8fc0ddbb..993b43ad2d 100644
--- a/src/port.h
+++ b/src/port.h
@@ -77,7 +77,7 @@ char *MEMMOVE(char *b,const char *a,int s);
 #ifndef HAVE_MEMCMP
 int MEMCMP(const char *b,const char *a,int s);
 #else
-#  define MEMCMP(X,Y,Z) memcmp((char*)(X),(char*)(Y),(char*)(Z))
+#  define MEMCMP(X,Y,Z) memcmp((char*)(X),(char*)(Y),(Z))
 #endif
 
 #ifndef HAVE_MEMCHR
-- 
GitLab