From 8fe4824ed267e8bdb4910dac325904e4b99b8fc2 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Fri, 9 Sep 2005 19:56:31 +0000 Subject: [PATCH] Fix typo. committer: mfx 1126295791 +0000 --- src/util.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index db9771b3..86640f4c 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -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);