core: ctxless: arrange local variables in reverse christmas tree order

This is a cosmetic change: let's be consistent treewide and have all
local variables arranged in reverse christmas tree order.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
diff --git a/src/lib/ctxless.c b/src/lib/ctxless.c
index d90a3e0..ba85018 100644
--- a/src/lib/ctxless.c
+++ b/src/lib/ctxless.c
@@ -35,8 +35,8 @@
 	struct gpiod_line_bulk bulk;
 	struct gpiod_chip *chip;
 	struct gpiod_line *line;
-	int rv, flags;
 	unsigned int i;
+	int rv, flags;
 
 	if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
 		errno = EINVAL;