switch from MAXPATHLEN to PATH_MAX, and use <limits.h> not <sys/param.h> for portability

This commit is contained in:
Paul Davis 2013-10-04 12:46:31 -04:00
parent 6daa7c1bc3
commit 1344014cbd

View File

@ -26,8 +26,8 @@
#include <sstream>
#include <unistd.h>
#include <limits.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <gtkmm/box.h>
#include <gtkmm/stock.h>
@ -1468,7 +1468,7 @@ SoundFileOmega::check_link_status (const Session* s, const vector<string>& paths
for (vector<string>::const_iterator i = paths.begin(); i != paths.end(); ++i) {
char tmpc[MAXPATHLEN+1];
char tmpc[PATH_MAX+1];
snprintf (tmpc, sizeof(tmpc), "%s/%s", tmpdir.c_str(), Glib::path_get_basename (*i).c_str());