Comment typo fix.

Is aware of the importance of comments: dim
This commit is contained in:
Ivan Voras 2013-04-16 22:42:40 +00:00
parent 11c601447d
commit 8e9405e8a7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249571

View File

@ -71,8 +71,8 @@ g_label_disk_ident_taste(struct g_consumer *cp, char *label, size_t size)
if (!found)
return;
/*
* We can safely ignore the result of strncpy; the label will
* simply be truncated, which at most is only annoying.
* We can safely ignore the result of snprintf(): the label
* will simply be truncated, which at most is only annoying.
*/
(void)snprintf(label, size, "%s-%s", cls->name, ident);
}