From 7119931719c16b3e14f3ca5213b351e777080528 Mon Sep 17 00:00:00 2001 From: Scott Soule Cheloha Date: Sun, 4 Dec 2022 23:50:52 +0000 Subject: userspace: remove vestigial '?' cases from top-level getopt(3) loops getopt(3) returns '?' when it encounters a flag not present in the in the optstring or if a flag is missing its option argument. We can handle this case with the "default" failure case with no loss of legibility. Hence, remove all the redundant "case '?':" lines. Prompted by dlg@. With help from dlg@ and millert@. Link: https://marc.info/?l=openbsd-tech&m=167011979726449&w=2 ok naddy@ millert@ dlg@ --- usr.bin/du/du.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'usr.bin/du') diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index c26638257f5..3d68413a53c 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -1,4 +1,4 @@ -/* $OpenBSD: du.c,v 1.32 2016/08/24 03:13:45 guenther Exp $ */ +/* $OpenBSD: du.c,v 1.33 2022/12/04 23:50:48 cheloha Exp $ */ /* $NetBSD: du.c,v 1.11 1996/10/18 07:20:35 thorpej Exp $ */ /* @@ -116,7 +116,6 @@ main(int argc, char *argv[]) case 'x': ftsoptions |= FTS_XDEV; break; - case '?': default: usage(); } -- cgit v1.2.3