diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-12-22 12:53:54 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-12-22 12:53:54 +0100 |
commit | 31c0f006516d494dd91b10bc0486e4f9be2ca623 (patch) | |
tree | f11984335b9c60db90b85933d562a2897943543d | |
parent | edee68f398f5b190f4be0127338956c0a2500662 (diff) | |
download | stagit-fork-31c0f006516d494dd91b10bc0486e4f9be2ca623.zip |
small code-style white-space/newline
-rw-r--r-- | stagit-index.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stagit-index.c b/stagit-index.c index 9a1f902..59a12d6 100644 --- a/stagit-index.c +++ b/stagit-index.c @@ -162,6 +162,7 @@ main(int argc, char *argv[]) for (i = 1; i < argc; i++) if (unveil(argv[i], "r") == -1) err(1, "unveil: %s", argv[i]); + if (pledge("stdio rpath", NULL) == -1) err(1, "pledge"); #endif |