From 2d36c4d7c9aebb9bd1b70b73956edcb81199c587 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 2 Apr 2020 16:13:23 -0400 Subject: Use a for loop for getopt --- chat.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'chat.c') diff --git a/chat.c b/chat.c index 22c5665..ea6e0c4 100644 --- a/chat.c +++ b/chat.c @@ -159,8 +159,7 @@ int main(int argc, char *argv[]) { if (options[i].has_arg) opts[j++] = ':'; } - int opt; - while (0 < (opt = getopt_config(argc, argv, opts, options, NULL))) { + for (int opt; 0 < (opt = getopt_config(argc, argv, opts, options, NULL));) { switch (opt) { break; case '!': insecure = true; break; case 'C': utilPush(&urlCopyUtil, optarg); -- cgit 1.4.1