summaryrefslogtreecommitdiff
path: root/util-linux/fdisk_osf.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-01-08 12:30:49 +0000
committerRon Yorston <rmy@pobox.com>2020-01-08 12:30:49 +0000
commita9271a8e97e6e7be5285330d5f19352decabf807 (patch)
treebf3c4464c369a15a46454792dac167505f74769f /util-linux/fdisk_osf.c
parentb0b7ab792bc1f45963f4b84b94faaf05054e1613 (diff)
parent9ec836c033fc6e55e80f3309b3e05acdf09bb297 (diff)
downloadbusybox-w32-a9271a8e97e6e7be5285330d5f19352decabf807.tar.gz
busybox-w32-a9271a8e97e6e7be5285330d5f19352decabf807.tar.bz2
busybox-w32-a9271a8e97e6e7be5285330d5f19352decabf807.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'util-linux/fdisk_osf.c')
-rw-r--r--util-linux/fdisk_osf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fdisk_osf.c b/util-linux/fdisk_osf.c
index 1328c1fcd..92180b2bc 100644
--- a/util-linux/fdisk_osf.c
+++ b/util-linux/fdisk_osf.c
@@ -470,7 +470,7 @@ xbsd_new_part(void)
470 end = xbsd_dlabel.d_secperunit - 1; 470 end = xbsd_dlabel.d_secperunit - 1;
471#endif 471#endif
472 472
473 snprintf(mesg, sizeof(mesg), "First %s", str_units(SINGULAR)); 473 snprintf(mesg, sizeof(mesg), "First %s", str_units());
474 begin = read_int(bsd_cround(begin), bsd_cround(begin), bsd_cround(end), 474 begin = read_int(bsd_cround(begin), bsd_cround(begin), bsd_cround(end),
475 0, mesg); 475 0, mesg);
476 476
@@ -478,7 +478,7 @@ xbsd_new_part(void)
478 begin = (begin - 1) * xbsd_dlabel.d_secpercyl; 478 begin = (begin - 1) * xbsd_dlabel.d_secpercyl;
479 479
480 snprintf(mesg, sizeof(mesg), "Last %s or +size or +sizeM or +sizeK", 480 snprintf(mesg, sizeof(mesg), "Last %s or +size or +sizeM or +sizeK",
481 str_units(SINGULAR)); 481 str_units());
482 end = read_int(bsd_cround(begin), bsd_cround(end), bsd_cround(end), 482 end = read_int(bsd_cround(begin), bsd_cround(end), bsd_cround(end),
483 bsd_cround(begin), mesg); 483 bsd_cround(begin), mesg);
484 484