mirror of
https://github.com/upx/upx
synced 2025-10-05 19:20:23 +08:00
Fix typo.
committer: mfx <mfx> 1126295791 +0000
This commit is contained in:
parent
d40cb3bd55
commit
8fe4824ed2
|
@ -61,7 +61,7 @@ int __acc_cdecl_qsort be32_compare(const void *e1, const void *e2)
|
||||||
return (d1 < d2) ? -1 : ((d1 > d2) ? 1 : 0);
|
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 d1 = get_be64(e1);
|
||||||
const acc_uint64l_t d2 = get_be64(e2);
|
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);
|
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 d1 = get_le64(e1);
|
||||||
const acc_uint64l_t d2 = get_le64(e2);
|
const acc_uint64l_t d2 = get_le64(e2);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user