aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/firewire/fwcrom.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2009-09-08 13:16:55 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2009-09-08 13:16:55 +0000
commitb34421bf9cab5d0ad5822abfaa62febedef2d9a1 (patch)
tree861cbfaa866bcf3864607e709a7f079f8e0b8b88 /sys/dev/firewire/fwcrom.c
parenta330ed7cd1527e7ec6ba9dd932510ab5c650e610 (diff)
Notes
Diffstat (limited to 'sys/dev/firewire/fwcrom.c')
-rw-r--r--sys/dev/firewire/fwcrom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/firewire/fwcrom.c b/sys/dev/firewire/fwcrom.c
index 8a53bc7fae710..9bafd2193c523 100644
--- a/sys/dev/firewire/fwcrom.c
+++ b/sys/dev/firewire/fwcrom.c
@@ -454,9 +454,9 @@ crom_add_simple_text(struct crom_src *src, struct crom_chunk *parent,
len = strlen(buf);
if (len > MAX_TEXT) {
#if defined(__DragonFly__) || __FreeBSD_version < 500000
- printf("text(%d) trancated to %d.\n", len, MAX_TEXT);
+ printf("text(%d) truncated to %d.\n", len, MAX_TEXT);
#else
- printf("text(%d) trancated to %td.\n", len, MAX_TEXT);
+ printf("text(%d) truncated to %td.\n", len, MAX_TEXT);
#endif
len = MAX_TEXT;
}