fixed var.c:42:12: error: 'PATH_MAX' undeclared (first use in this function); did you mean 'RAND_MAX'? char path[PATH_MAX];` Signed-off-by: Khem Raj <raj.khem@xxxxxxxxx> --- dump/var.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dump/var.c b/dump/var.c index 645caab..8156d37 100644 --- a/dump/var.c +++ b/dump/var.c @@ -16,6 +16,7 @@ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <limits.h> #include <unistd.h> #include <stdlib.h> #include <sys/stat.h> -- 2.14.1 -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html