From eabcbfc44956ade48f431786439be623d9ee18d0 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 2 Sep 2019 13:10:44 +0200 Subject: [PATCH] sfdisk: mark --dump and --list-free as mutually exclusive Reported-by: Bertrand Jacquin Signed-off-by: Karel Zak --- disk-utils/sfdisk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/disk-utils/sfdisk.c b/disk-utils/sfdisk.c index 2ceec71ba0..f55f88f5ce 100644 --- a/disk-utils/sfdisk.c +++ b/disk-utils/sfdisk.c @@ -1986,6 +1986,7 @@ int main(int argc, char *argv[]) { NULL, 0, NULL, 0 }, }; static const ul_excl_t excl[] = { /* rows and cols in ASCII order */ + { 'F','d'}, /* --list-free --dump */ { 's','u'}, /* --show-size --unit */ { 0 } }; -- 2.39.2