summaryrefslogtreecommitdiffstats
path: root/clib/compare.h
diff options
context:
space:
mode:
Diffstat (limited to 'clib/compare.h')
-rw-r--r--clib/compare.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clib/compare.h b/clib/compare.h
index 296983e..438d5ac 100644
--- a/clib/compare.h
+++ b/clib/compare.h
@@ -43,7 +43,7 @@ typedef int (*compare_f) (const void *, const void *);
*/
static inline int default_compare(const void *v1, const void *v2)
{
- const int i1 = (const int)v1, i2 = (const int)v2;
+ const int i1 = (const long)v1, i2 = (const long)v2;
return i1 - i2;
}
OpenPOWER on IntegriCloud