dtcalc: remove MAX_PATH, use standard PATH_MAX
This commit is contained in:
@@ -4138,7 +4138,7 @@ save_state(Widget widget, XtPointer client_data, XtPointer call_data)
|
||||
else
|
||||
{
|
||||
XtFree( (char *)full_path);
|
||||
full_path = (char *) XtMalloc (sizeof (char) * MAX_PATH);
|
||||
full_path = (char *) XtMalloc (sizeof (char) * PATH_MAX);
|
||||
sprintf( full_path, "%s/%s", dt_path, DTCALC_CLASS_NAME);
|
||||
sessionFileName = full_path;
|
||||
}
|
||||
|
||||
@@ -177,4 +177,3 @@ XVars X ;
|
||||
#define HOME_RESTORE 1
|
||||
#define CURRENT_RESTORE 2
|
||||
|
||||
#define MAX_PATH PATH_MAX
|
||||
|
||||
Reference in New Issue
Block a user