From 9376dce5dde8d3eedaf62456ff2c0edc346d5a12 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Sun, 19 Jul 2020 20:25:49 -0400 Subject: [PATCH] Change return type of main() to void, to avoid warning. --- apps/edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/edit.c b/apps/edit.c index 17f5709..c60e68b 100644 --- a/apps/edit.c +++ b/apps/edit.c @@ -1264,7 +1264,7 @@ copymove2_cleanup: } } -int main(int argc, char *argv[]) { +void main(int argc, char *argv[]) { if (argc == 2) { quit_to_email = 1; edit(argv[1]);