bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] fix bcopy params


From: Grisha Levit
Subject: [PATCH] fix bcopy params
Date: Sat, 1 Apr 2023 22:11:35 -0400

---
 lib/sh/oslib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/sh/oslib.c b/lib/sh/oslib.c
index ab7924df..85f7b491 100644 --- a/lib/sh/oslib.c
+++ b/lib/sh/oslib.c @@ -161,7 +161,7 @@ getdtablesize (void) # undef bcopy
 # endif void
-bcopy (void *s, *d, size_t n)
+bcopy (void *s, void *d, size_t n) {
   FASTCOPY (s, d, n); }
--
2.40.0


reply via email to

[Prev in Thread] Current Thread [Next in Thread]