From 8e9405e8a723babad2ff7e48317ffa71cf9f806a Mon Sep 17 00:00:00 2001 From: Ivan Voras Date: Tue, 16 Apr 2013 22:42:40 +0000 Subject: [PATCH] Comment typo fix. Is aware of the importance of comments: dim --- sys/geom/label/g_label_disk_ident.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/geom/label/g_label_disk_ident.c b/sys/geom/label/g_label_disk_ident.c index 3bcaad28c11..b2b9adf3014 100644 --- a/sys/geom/label/g_label_disk_ident.c +++ b/sys/geom/label/g_label_disk_ident.c @@ -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); }