Skip to content

Commit

Permalink
Merge pull request #4579 from dm9pZCAq/master
Browse files Browse the repository at this point in the history
fix compilation on musl (#4578)
  • Loading branch information
netblue30 committed Oct 9, 2021
2 parents 3558c83 + 5805c1c commit c57199a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/firejail/env.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <limits.h>

typedef struct env_t {
struct env_t *next;
Expand Down
2 changes: 1 addition & 1 deletion src/firejail/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include <dirent.h>
#include <pwd.h>
#include <errno.h>
//#include <limits.h>
#include <limits.h>
#include <sys/file.h>
#include <sys/prctl.h>
#include <signal.h>
Expand Down

0 comments on commit c57199a

Please sign in to comment.