From 9b60974891095da453543a2a41c4ef2dd2d17c97 Mon Sep 17 00:00:00 2001 From: Allanis Date: Tue, 11 Mar 2014 19:09:11 +0000 Subject: [PATCH] [Change] Increased PATH_MAX to POSIX minimum. --- src/lephisto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lephisto.h b/src/lephisto.h index 42cd41e..f6004d8 100644 --- a/src/lephisto.h +++ b/src/lephisto.h @@ -31,7 +31,7 @@ extern char dataname[DATA_NAME_LEN]; /**< Datafile name. */ /* Max filename path. */ #ifndef PATH_MAX -# define PATH_MAX 128 /**< If not already defined. */ +# define PATH_MAX 256 /**< If not already defined. */ #endif #ifndef M_PI