diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-14 09:59:05 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-14 09:59:05 +0200 |
commit | ec1c82b2e82f395f6e8e19ac212a639644330cd7 (patch) | |
tree | 8ae002acaf62cf1e2a03a73cea2573d16584c5c9 /src/liblzma/check/crc64_x86.s | |
parent | Use .globl instead of .global in x86 assembler code for (diff) | |
download | xz-ec1c82b2e82f395f6e8e19ac212a639644330cd7.tar.xz |
Fixed wrong symbol name in crc64_x86.s.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/check/crc64_x86.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/check/crc64_x86.s b/src/liblzma/check/crc64_x86.s index f9dc595f..7ad3d889 100644 --- a/src/liblzma/check/crc64_x86.s +++ b/src/liblzma/check/crc64_x86.s @@ -200,4 +200,4 @@ lzma_crc64: popl %ebx ret - .size lzma_crc32, .-lzma_crc32 + .size lzma_crc64, .-lzma_crc64 |