1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Fix typo.

committer: mfx <mfx> 1126295791 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2005-09-09 19:56:31 +00:00
parent d40cb3bd55
commit 8fe4824ed2

View File

@ -61,7 +61,7 @@ int __acc_cdecl_qsort be32_compare(const void *e1, const void *e2)
return (d1 < d2) ? -1 : ((d1 > d2) ? 1 : 0);
}
int __acc_cdecl_qsort be64(const void *e1, const void *e2)
int __acc_cdecl_qsort be64_compare(const void *e1, const void *e2)
{
const acc_uint64l_t d1 = get_be64(e1);
const acc_uint64l_t d2 = get_be64(e2);
@ -82,7 +82,7 @@ int __acc_cdecl_qsort le32_compare(const void *e1, const void *e2)
return (d1 < d2) ? -1 : ((d1 > d2) ? 1 : 0);
}
int __acc_cdecl_qsort le64(const void *e1, const void *e2)
int __acc_cdecl_qsort le64_compare(const void *e1, const void *e2)
{
const acc_uint64l_t d1 = get_le64(e1);
const acc_uint64l_t d2 = get_le64(e2);