diff options
author | Alexander Motin <mav@FreeBSD.org> | 2020-07-23 14:33:25 +0000 |
---|---|---|
committer | Alexander Motin <mav@FreeBSD.org> | 2020-07-23 14:33:25 +0000 |
commit | 81614d236f6817d4ceb587c70fa4eb4318588431 (patch) | |
tree | 886e5e925392b0432e32c56d4ec8411f317b5646 | |
parent | 4cbba6ae2464c05639e152c3782bef735b8fbd1f (diff) | |
download | src-81614d236f6817d4ceb587c70fa4eb4318588431.tar.gz src-81614d236f6817d4ceb587c70fa4eb4318588431.zip |
Add missing newlines.
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=363448
-rw-r--r-- | sbin/nvmecontrol/identify.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/nvmecontrol/identify.c b/sbin/nvmecontrol/identify.c index f3c488281fcd..04aff36917ac 100644 --- a/sbin/nvmecontrol/identify.c +++ b/sbin/nvmecontrol/identify.c @@ -151,15 +151,15 @@ print_namespace(struct nvme_namespace_data *nsdata) uint128_to_str(to128(nsdata->nvmcap), cbuf, sizeof(cbuf))); if ((nsdata->nsfeat >> NVME_NS_DATA_NSFEAT_NPVALID_SHIFT) & NVME_NS_DATA_NSFEAT_NPVALID_MASK) { - printf("Preferred Write Granularity: %u blocks", + printf("Preferred Write Granularity: %u blocks\n", nsdata->npwg + 1); - printf("Preferred Write Alignment: %u blocks", + printf("Preferred Write Alignment: %u blocks\n", nsdata->npwa + 1); - printf("Preferred Deallocate Granul: %u blocks", + printf("Preferred Deallocate Granul: %u blocks\n", nsdata->npdg + 1); - printf("Preferred Deallocate Align: %u blocks", + printf("Preferred Deallocate Align: %u blocks\n", nsdata->npda + 1); - printf("Optimal Write Size: %u blocks", + printf("Optimal Write Size: %u blocks\n", nsdata->nows + 1); } printf("Globally Unique Identifier: "); |