changeset 1128:c28ed52ddbaa

revert a mempcpy to memcpy
author Jim Meyering <jim@meyering.net>
date Wed, 19 Nov 1997 18:55:31 +0000
parents b1cf986e135f
children 82ab453142da
files lib/path-concat.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/path-concat.c
+++ b/lib/path-concat.c
@@ -63,7 +63,7 @@
   if (base_in_result)
     *base_in_result = p;
 
-  mempcpy (p, base, base_len + 1);
+  memcpy (p, base, base_len + 1);
 
   return p_concat;
 }