Skip to content

Commit 9e04942

Browse files
committed
---
yaml --- r: 14145 b: refs/heads/try c: 9effae8 h: refs/heads/master i: 14143: f7dc0af v: v3
1 parent 23fd5bb commit 9e04942

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 1ccbba33414e68fda6a4a0886bc657069a9737dc
5+
refs/heads/try: 9effae841391db2557e645c6af0cedcbfcd3a8b4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/libcore/ptr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Copies data from one src to dst, overlap between the two pointers may occur.
7070
Count is the number of elements to copy and not the number of bytes.
7171
*/
7272
unsafe fn memmove<T>(dst: *T, src: *T, count: uint) {
73-
rusti::memcpy(dst, src, count);
73+
rusti::memmove(dst, src, count);
7474
}
7575

7676
#[test]

0 commit comments

Comments
 (0)