diff options
author | imp <imp@FreeBSD.org> | 2002-03-27 06:20:20 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-27 06:20:20 +0000 |
commit | e101b96a9ad94cf591e49d20f8fb51b0e16e1d93 (patch) | |
tree | d37ea79ca96fe822aa7e69d53f423f6d71feb4e4 /sbin | |
parent | 3e06b51f1959cf8a394386d5d95fdf959e56974c (diff) | |
download | FreeBSD-src-e101b96a9ad94cf591e49d20f8fb51b0e16e1d93.zip FreeBSD-src-e101b96a9ad94cf591e49d20f8fb51b0e16e1d93.tar.gz |
Add missing \ before an 'n' to get the proper newline when running
fdisk -s for each partition.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fdisk_pc98/fdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fdisk_pc98/fdisk.c b/sbin/fdisk_pc98/fdisk.c index 9fe2773..d20c495 100644 --- a/sbin/fdisk_pc98/fdisk.c +++ b/sbin/fdisk_pc98/fdisk.c @@ -378,7 +378,7 @@ main(int argc, char *argv[]) if (partp->dp_start == 0 && partp->dp_size == 0) #endif continue; - printf("%4d: %11lu %11lu 0x%02xn", i + 1, + printf("%4d: %11lu %11lu 0x%02x\n", i + 1, #ifdef PC98 partp->dp_scyl * cylsecs, (partp->dp_ecyl - partp->dp_scyl + 1) * cylsecs, |