-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7202b4a
commit 741f472
Showing
6 changed files
with
184 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From 88ce1e5de62886aa14c74421cde6130e16e70d7d Mon Sep 17 00:00:00 2001 | ||
From: psykose <[email protected]> | ||
Date: Sat, 6 Jul 2024 20:52:50 +0200 | ||
Subject: [PATCH] utils: include limits.h for PATH_MAX | ||
|
||
--- | ||
src/Utils/Process.cpp | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/src/Utils/Process.cpp b/src/Utils/Process.cpp | ||
index e71786f75..3e748e0d3 100644 | ||
--- a/src/Utils/Process.cpp | ||
+++ b/src/Utils/Process.cpp | ||
@@ -21,6 +21,7 @@ | ||
#include <pthread.h> | ||
#include <stdlib.h> | ||
#include <dirent.h> | ||
+#include <limits.h> | ||
#include <unistd.h> | ||
#include <sys/types.h> | ||
#include <signal.h> |
Oops, something went wrong.