summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2023-03-31 14:41:09 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2023-03-31 14:41:09 +0000
commit6ebd0ddcda7dcd44763bb40a01f404c5cc6ae50d (patch)
tree37ccb02c61da113b4ac7b5b07942fb497991029a /sbin
parent96e24466a73068c43403d2b495f05234657c3ca0 (diff)
Oops. Missed eliminating unneeded double quotes in previous.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/fdisk/part.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fdisk/part.c b/sbin/fdisk/part.c
index bccd5ce0615..53c08698050 100644
--- a/sbin/fdisk/part.c
+++ b/sbin/fdisk/part.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: part.c,v 1.145 2023/03/31 13:11:41 krw Exp $ */
+/* $OpenBSD: part.c,v 1.146 2023/03/31 14:41:08 krw Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -440,7 +440,7 @@ PRT_print_part(const int num, const struct prt *prt, const char *units)
PRT_lba_to_chs(prt, &start, &end);
mt = find_mbr_type(prt->prt_id);
- printf("%c%1d: %.2X %6llu %3u %3u - %6llu %3u %3u " "[%12llu:%12.0f%s] "
+ printf("%c%1d: %.2X %6llu %3u %3u - %6llu %3u %3u [%12llu:%12.0f%s] "
"%s\n", (prt->prt_flag == DOSACTIVE) ? '*' : ' ', num, prt->prt_id,
start.chs_cyl, start.chs_head, start.chs_sect,
end.chs_cyl, end.chs_head, end.chs_sect,