Simplify error message emitted when requested partition size
authorkrw <krw@openbsd.org>
Sun, 19 Dec 2021 19:26:18 +0000 (19:26 +0000)
committerkrw <krw@openbsd.org>
Sun, 19 Dec 2021 19:26:18 +0000 (19:26 +0000)
cannot be accommodated. "not enough space" should be enough for
anyone.

Requested by deraadt@

sbin/disklabel/editor.c

index 8f71178..b43f10f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: editor.c,v 1.369 2021/11/09 16:53:18 otto Exp $       */
+/*     $OpenBSD: editor.c,v 1.370 2021/12/19 19:26:18 krw Exp $        */
 
 /*
  * Copyright (c) 1997-2000 Todd C. Miller <millert@openbsd.org>
@@ -2535,7 +2535,7 @@ alignpartition(struct disklabel *lp, int partno, u_int64_t startalign,
                stop = maxstop;
 
        if (stop <= start) {
-               fprintf(stderr, "'%c' aligned size <= 0\n", 'a' + partno);
+               fprintf(stderr, "not enough space\n");
                return (1);
        }