From 375df9f40b347b2417f12b88f1f4d805cddec1c7 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 29 Nov 2020 23:32:37 +0530 Subject: [PATCH] Show tmp dir details in debug --- src/nnn.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nnn.c b/src/nnn.c index 76a6d108..ebd3bfd6 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -7532,6 +7532,9 @@ static bool set_tmp_path(void) } tmpfplen = (uchar)xstrsncpy(g_tmpfpath, path, TMP_LEN_MAX); + DPRINTF_S(g_tmpfpath); + DPRINTF_U(tmpfplen); + return TRUE; }