projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb53ea1
)
revert a mempcpy to memcpy
author
Jim Meyering
<jim@meyering.net>
Wed, 19 Nov 1997 18:55:31 +0000
(18:55 +0000)
committer
Jim Meyering
<jim@meyering.net>
Wed, 19 Nov 1997 18:55:31 +0000
(18:55 +0000)
lib/path-concat.c
patch
|
blob
|
history
diff --git
a/lib/path-concat.c
b/lib/path-concat.c
index c7f041bbda1f1a8fe6cfd589bc1e191c35c99ba8..ff3978020f1c944aac2478d95f5358ccde51fe00 100644
(file)
--- a/
lib/path-concat.c
+++ b/
lib/path-concat.c
@@
-63,7
+63,7
@@
path_concat (dir, base, base_in_result)
if (base_in_result)
*base_in_result = p;
- mem
p
cpy (p, base, base_len + 1);
+ memcpy (p, base, base_len + 1);
return p_concat;
}