mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-30 08:19:09 +00:00
Add missing newlines.
MFC after: 3 days
This commit is contained in:
parent
4cbba6ae24
commit
81614d236f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363448
@ -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: ");
|
||||
|
Loading…
Reference in New Issue
Block a user