From 614ebe73fa3250dfbdbf5f4a8dc0150ef239236a Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Wed, 2 Oct 2024 20:07:34 +0530 Subject: [PATCH] Fix patch break --- src/nnn.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 7d17874a..10feca38 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -279,15 +279,15 @@ #define VCMP 2 #define VLEN 3 +/* Command history */ +#define MAX_HISTORY 0x10 +#define INVALID_POS 0xFF + /* Volume info */ #define VFS_AVAIL 0 #define VFS_USED 1 #define VFS_SIZE 2 -/* Command history */ -#define MAX_HISTORY 0x10 -#define INVALID_POS 0xFF - /* TYPE DEFINITIONS */ typedef unsigned int uint_t; typedef unsigned char uchar_t;