From 0766f5599cbba9cb567c8ed2d1da3bfc65550791 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Tue, 26 Nov 2024 23:33:55 +0100 Subject: [PATCH] bcachefs: eytzinger self tests: fix cmp_u16 typo Fix an obvious typo in cmp_u16(). Signed-off-by: Andreas Gruenbacher Signed-off-by: Kent Overstreet --- fs/bcachefs/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/bcachefs/util.c b/fs/bcachefs/util.c index 8120e9d2667c..3a69e3409e89 100644 --- a/fs/bcachefs/util.c +++ b/fs/bcachefs/util.c @@ -774,7 +774,7 @@ static inline int cmp_u16(const void *_l, const void *_r) { const u16 *l = _l, *r = _r; - return (*l > *r) - (*r - *l); + return (*l > *r) - (*r > *l); } static void eytzinger0_find_test_val(u16 *test_array, unsigned nr, u16 search) -- 2.50.1