Fix usage of contentAddress()

This commit is contained in:
Remco Bloemen 2018-06-13 11:36:35 +02:00
parent c66477c690
commit 20a07494f6

View File

@ -571,8 +571,8 @@ library LibBytes {
GREATER_OR_EQUAL_TO_SOURCE_BYTES_LENGTH_REQUIRED GREATER_OR_EQUAL_TO_SOURCE_BYTES_LENGTH_REQUIRED
); );
memCopy( memCopy(
getMemAddress(dest) + 32, // +32 to skip length of <dest> dest.contentAddress(),
getMemAddress(source) + 32, // +32 to skip length of <source> source.contentAddress(),
sourceLen sourceLen
); );
} }