From 4832901d6caf9ec39c166f3f7a88a0ce740d2ec6 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Fri, 12 Jan 2018 11:02:48 -0500 Subject: [PATCH] [master] Removed unused variable in absolute_path() modified: common/print.c --- common/print.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/print.c b/common/print.c index 8727b4fa7..b42e7bc52 100644 --- a/common/print.c +++ b/common/print.c @@ -1457,7 +1457,6 @@ char *absolute_path(const char *orgpath) { char buf[PATH_MAX]; #else char buf[2048]; - int len; #endif errno = 0; if (realpath(orgpath, buf) == NULL) { -- 2.47.3