The following changes since commit 204c368ebe461b08b18124e1e5555a65b128ab7a: use option smalloc_pool_size (2016-01-08 14:29:12 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to a7cd478dffddb6d3d3109bce9f603139384c673e: options: fix bs_cmp() (2016-01-12 10:18:50 -0700) ---------------------------------------------------------------- Jens Axboe (1): options: fix bs_cmp() options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/options.c b/options.c index 871552b..0bf1390 100644 --- a/options.c +++ b/options.c @@ -41,7 +41,7 @@ static int bs_cmp(const void *p1, const void *p2) const struct bssplit *bsp1 = p1; const struct bssplit *bsp2 = p2; - return bsp1->perc < bsp2->perc; + return (int) bsp1->perc - (int) bsp2->perc; } static int bssplit_ddir(struct thread_options *o, int ddir, char *str) -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html