From: Thomas Markwalder Date: Fri, 12 Jan 2018 16:02:48 +0000 (-0500) Subject: [master] Removed unused variable in absolute_path() X-Git-Tag: v4_4_0~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4832901d6caf9ec39c166f3f7a88a0ce740d2ec6;p=thirdparty%2Fdhcp.git [master] Removed unused variable in absolute_path() modified: common/print.c --- 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) {