commit b7c43bfa6081a766bc2f36fc6ec4f3f6c1d253da
parent 1ea5109407ad7ccef5feb4cfd0d228bca3572479
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 14 Aug 2019 11:49:33 +0200
Remove useless parentheses.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/ansilove.c b/src/ansilove.c
@@ -77,9 +77,8 @@ main(int argc, char *argv[])
if (ansilove_init(&ctx, &options) == -1)
errx(EXIT_FAILURE, "%s", ansilove_error(&ctx));
- if (pledge("stdio cpath rpath wpath", NULL) == -1) {
+ if (pledge("stdio cpath rpath wpath", NULL) == -1)
err(EXIT_FAILURE, "pledge");
- }
while ((getoptFlag = getopt(argc, argv, "b:c:df:him:o:rR:sv")) != -1) {
switch (getoptFlag) {