From 3a68c85c8d6e8684c94d82bd64a622004579f3b4 Mon Sep 17 00:00:00 2001
From: Joursoir <chat@joursoir.net>
Date: Wed, 31 Aug 2022 15:52:00 +0300
Subject: tree: indent one tab between macro name and value

---
 src/constants.h | 12 ++++++------
 src/routines.c  |  2 +-
 src/routines.h  |  2 +-
 src/tree.c      |  6 +++---
 4 files changed, 11 insertions(+), 11 deletions(-)

(limited to 'src')

diff --git a/src/constants.h b/src/constants.h
index cdc0464..9d82eeb 100644
--- a/src/constants.h
+++ b/src/constants.h
@@ -19,15 +19,15 @@
 	along with this program.  If not, see <https://www.gnu.org/licenses/>.
 ***/
 
-#define VERSION "1.2a"
-#define DATE_RELEASE "4 July, 2021"
+#define VERSION	"1.2a"
+#define DATE_RELEASE	"4 July, 2021"
 
-#define LOCKPASS_DIR ".lock-password/"
-#define GPGKEY_FILE ".gpg-key"
-#define STD_TEXT_EDITOR "vi"
+#define LOCKPASS_DIR	".lock-password/"
+#define GPGKEY_FILE	".gpg-key"
+#define STD_TEXT_EDITOR	"vi"
 
 #ifdef DEBUG
-	#define dbgprint(...) fprintf(stderr, "Debug: " __VA_ARGS__)
+	#define dbgprint(...)	fprintf(stderr, "Debug: " __VA_ARGS__)
 #else
 	#define dbgprint(...)
 #endif
diff --git a/src/routines.c b/src/routines.c
index 9d8bf4a..2250fec 100644
--- a/src/routines.c
+++ b/src/routines.c
@@ -35,7 +35,7 @@
 #endif
 #include "output.h"
 
-#define NUMBER_ALLOWED_CHARS (10+26+26+8)
+#define NUMBER_ALLOWED_CHARS	(10+26+26+8)
 
 int copy_outside(char *password)
 {
diff --git a/src/routines.h b/src/routines.h
index 90d6fb3..dc4d714 100644
--- a/src/routines.h
+++ b/src/routines.h
@@ -19,7 +19,7 @@
 	along with this program.  If not, see <https://www.gnu.org/licenses/>.
 ***/
 
-#define GPG_PUBLICKEY_MAXLENGTH 1024
+#define GPG_PUBLICKEY_MAXLENGTH	1024
 
 int copy_outside(char *password);
 int check_sneaky_paths(const char *path);
diff --git a/src/tree.c b/src/tree.c
index 63ffd3c..293a86a 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -27,9 +27,9 @@
 #include "xstd.h"
 #include "easydir.h"
 
-#define ANSIC_RST  "\x1B[0m"
-#define ANSIC_BBLU  "\x1B[34;1m"
-#define ANSIC_BGRN  "\x1B[32;1m"
+#define ANSIC_RST	"\x1B[0m"
+#define ANSIC_BBLU	"\x1B[34;1m"
+#define ANSIC_BGRN	"\x1B[32;1m"
 
 static void entries_sort(char **entries, const int size)
 {
-- 
cgit v1.2.3-18-g5258